-
Notifications
You must be signed in to change notification settings - Fork 521
/
Copy pathChangeTimeExtent.xaml
27 lines (27 loc) · 1.28 KB
/
ChangeTimeExtent.xaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<?xml version="1.0" encoding="utf-8" ?>
<ContentPage x:Class="ArcGIS.Samples.ChangeTimeExtent.ChangeTimeExtent"
xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:esriUI="clr-namespace:Esri.ArcGISRuntime.Maui;assembly=Esri.ArcGISRuntime.Maui">
<Grid Style="{DynamicResource EsriSampleContainer}">
<esriUI:MapView x:Name="MyMapView" Style="{DynamicResource EsriSampleGeoView}" />
<Border Style="{DynamicResource EsriSampleControlPanel}">
<Grid RowSpacing="3">
<Grid.RowDefinitions>
<RowDefinition Height="auto" />
<RowDefinition Height="auto" />
<RowDefinition Height="auto" />
</Grid.RowDefinitions>
<Label Grid.Row="0"
HorizontalTextAlignment="Center"
Text="Tap a year to filter the data." />
<Button Grid.Row="1"
Clicked="twoThousand_Clicked"
Text="2000" />
<Button Grid.Row="2"
Clicked="twoThousandFive_Clicked"
Text="2005" />
</Grid>
</Border>
</Grid>
</ContentPage>