-
Notifications
You must be signed in to change notification settings - Fork 524
/
Copy pathConfigureBasemapStyleParameters.xaml
24 lines (24 loc) · 1.23 KB
/
ConfigureBasemapStyleParameters.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
<UserControl x:Class="ArcGIS.WinUI.Samples.ConfigureBasemapStyleParameters.ConfigureBasemapStyleParameters"
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 Style="{StaticResource BorderStyle}">
<StackPanel Margin="5">
<TextBlock FontWeight="Bold" Text="Set language strategy:" />
<RadioButton x:Name="GlobalRadioButton" Content="Global" />
<RadioButton x:Name="LocalRadioButton"
Content="Local"
IsChecked="True" />
<TextBlock FontWeight="Bold" Text="Set specific language:" />
<ComboBox x:Name="LanguagePicker" HorizontalAlignment="Stretch">
<ComboBoxItem Content="None" IsSelected="True" />
<ComboBoxItem Content="Bulgarian" />
<ComboBoxItem Content="Greek" />
<ComboBoxItem Content="Turkish" />
</ComboBox>
</StackPanel>
</Border>
</Grid>
</UserControl>