-
Notifications
You must be signed in to change notification settings - Fork 524
/
Copy pathChooseCameraController.xaml
28 lines (28 loc) · 1.38 KB
/
ChooseCameraController.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.ChooseCameraController.ChooseCameraController"
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:SceneView x:Name="MySceneView" />
<Border Style="{StaticResource BorderStyle}">
<StackPanel Orientation="Vertical">
<RadioButton x:Name="OrbitPlaneButton"
Checked="Setting_Checked"
Content="Orbit camera around plane"
GroupName="ColorScheme"
IsChecked="True"
IsEnabled="False" />
<RadioButton x:Name="OrbitCraterButton"
Checked="Setting_Checked"
Content="Orbit camera around crater"
GroupName="ColorScheme"
IsEnabled="False" />
<RadioButton x:Name="FreePanButton"
Checked="Setting_Checked"
Content="Free pan around the globe"
GroupName="ColorScheme"
IsEnabled="False" />
</StackPanel>
</Border>
</Grid>
</UserControl>