forked from Esri/arcgis-maps-sdk-dotnet-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDisplayDeviceLocationVB.xaml
More file actions
34 lines (34 loc) · 1.65 KB
/
Copy pathDisplayDeviceLocationVB.xaml
File metadata and controls
34 lines (34 loc) · 1.65 KB
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
<UserControl
x:Class="DisplayDeviceLocation.DisplayDeviceLocationVB"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
mc:Ignorable="d"
xmlns:esri="http://schemas.esri.com/arcgis/runtime/2013"
d:DesignHeight="300" d:DesignWidth="300">
<Grid>
<esri:MapView x:Name="MyMapView"/>
<Border
Background="White" BorderBrush="Black" BorderThickness="1"
HorizontalAlignment="Right" VerticalAlignment="Top"
Margin="30" Padding="20" Width="375">
<Grid>
<Grid.RowDefinitions>
<RowDefinition />
<RowDefinition />
<RowDefinition />
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition />
<ColumnDefinition />
</Grid.ColumnDefinitions>
<TextBlock Text="Select autopan mode"
Margin="0,0,0,2" TextWrapping="Wrap" />
<ComboBox x:Name="modeChooser" SelectionChanged="OnModeChooserSelectionChanged" Grid.Row="1" Grid.ColumnSpan="2"/>
<Button x:Name="StartButton" Click="OnStartButtonClicked" Content="Start" Margin="10, 5" Grid.Row="2"/>
<Button x:Name="StopButton" Click="OnStopButtonClicked" Content="Stop" Margin="10,5" Grid.Row="2" Grid.Column="1"/>
</Grid>
</Border>
</Grid>
</UserControl>