-
Notifications
You must be signed in to change notification settings - Fork 521
/
PlayKmlTours.xaml
38 lines (38 loc) · 1.74 KB
/
PlayKmlTours.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
29
30
31
32
33
34
35
36
37
38
<UserControl x:Class="ArcGIS.WinUI.Samples.PlayKmlTours.PlayKmlTours"
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" Spacing="5">
<TextBlock Margin="0,0,0,5"
Text="Use the buttons to control the tour.
Contains audio. 🎧"
TextWrapping="Wrap"/>
<Grid ColumnSpacing="5">
<Grid.ColumnDefinitions>
<ColumnDefinition />
<ColumnDefinition />
</Grid.ColumnDefinitions>
<Button x:Name="PlayPauseButton"
HorizontalAlignment="Stretch"
Click="PlayPause_Click"
Content="Play"
IsEnabled="False" />
<Button x:Name="ResetButton"
Grid.Column="1"
HorizontalAlignment="Stretch"
Click="Reset_Click"
Content="Reset"
IsEnabled="False" />
</Grid>
<ProgressBar x:Name="LoadingStatusBar"
Height="10"
Margin="0,5,0,0"
IsEnabled="True"
IsIndeterminate="True" />
</StackPanel>
</Border>
</Grid>
</UserControl>