-
Notifications
You must be signed in to change notification settings - Fork 519
/
BrowseWfsLayers.xaml
70 lines (70 loc) · 3.18 KB
/
BrowseWfsLayers.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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<UserControl x:Class="ArcGIS.WPF.Samples.BrowseWfsLayers.BrowseWfsLayers"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:esri="http://schemas.esri.com/arcgis/runtime/2013">
<Grid>
<esri:MapView x:Name="MyMapView" />
<Border Style="{StaticResource BorderStyle}">
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="*" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="*" />
<ColumnDefinition Width="Auto" />
</Grid.ColumnDefinitions>
<TextBlock Grid.Row="0"
Grid.ColumnSpan="2"
Margin="5"
FontWeight="Bold"
Foreground="Black"
Text="Load the service, then select a WFS layer for display."
TextAlignment="Center" />
<TextBox x:Name="ServiceTextBox"
Grid.Row="1"
Grid.Column="0"
Margin="0,0,5,5" />
<Button x:Name="LoadServiceButton"
Grid.Row="1"
Grid.Column="1"
Margin="0,0,0,5"
Padding="5,0,5,0"
Click="LoadServiceButton_Click"
Content="Load service" />
<ProgressBar x:Name="LoadingProgressBar"
Grid.Row="2"
Grid.ColumnSpan="2"
Height="15"
Margin="0,5,0,5"
IsEnabled="True"
IsIndeterminate="True"
Visibility="Visible" />
<ListView x:Name="WfsLayerList"
Grid.Row="3"
Grid.ColumnSpan="2"
SelectionMode="Single">
<ListView.ItemTemplate>
<DataTemplate>
<Label Content="{Binding Title}" />
</DataTemplate>
</ListView.ItemTemplate>
</ListView>
<CheckBox x:Name="AxisOrderSwapCheckbox"
Grid.Row="4"
Grid.ColumnSpan="2"
Margin="0,5,0,5"
Content="Swap coordinate order (try if nothing appears after load)" />
<Button x:Name="LoadLayersButton"
Grid.Row="5"
Grid.ColumnSpan="2"
Click="LoadLayers_Clicked"
Content="Load selected layer" />
</Grid>
</Border>
</Grid>
</UserControl>