-
Notifications
You must be signed in to change notification settings - Fork 524
/
Copy pathToggleBetweenFeatureRequestModes.xaml
28 lines (28 loc) · 1.24 KB
/
ToggleBetweenFeatureRequestModes.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
28
<UserControl x:Class="ArcGIS.WinUI.Samples.ToggleBetweenFeatureRequestModes.ToggleBetweenFeatureRequestModes"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:esriUI="using:Esri.ArcGISRuntime.UI.Controls">
<Grid>
<esriUI:MapView x:Name="MyMapView" />
<Border Width="175"
Height="auto"
Style="{StaticResource BorderStyle}">
<StackPanel>
<RadioButton x:Name="Cache"
Checked="CacheChecked"
Content="Cache" />
<RadioButton x:Name="NoCache"
Checked="NoCacheChecked"
Content="No Cache" />
<RadioButton x:Name="ManualCache"
Checked="ManualCacheChecked"
Content="Manual Cache" />
<Button x:Name="PopulateMap"
Margin="5"
Click="PopulateButtonClick"
Content="Populate"
IsEnabled="False" />
</StackPanel>
</Border>
</Grid>
</UserControl>