-
Notifications
You must be signed in to change notification settings - Fork 521
/
EditAndSyncFeatures.xaml
31 lines (31 loc) · 1.46 KB
/
EditAndSyncFeatures.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
<UserControl x:Class="ArcGIS.WinUI.Samples.EditAndSyncFeatures.EditAndSyncFeatures"
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" GeoViewTapped="GeoViewTapped" />
<Border Style="{StaticResource BorderStyle}">
<StackPanel>
<TextBlock x:Name="MyHelpLabel"
FontWeight="SemiBold"
Text="1. Click 'Generate geodatabase'"
TextAlignment="Center" />
<Button x:Name="GenerateButton"
Margin="0,5,0,5"
HorizontalAlignment="Stretch"
Click="GenerateButton_Clicked"
Content="Generate geodatabase"
IsEnabled="False" />
<Button x:Name="SyncButton"
HorizontalAlignment="Stretch"
Click="SyncButton_Click"
Content="Sync geodatabase"
IsEnabled="False" />
<ProgressBar x:Name="GenerateSyncProgressBar"
MinHeight="15"
Margin="0,5,0,0"
Visibility="Collapsed" />
</StackPanel>
</Border>
</Grid>
</UserControl>