-
Notifications
You must be signed in to change notification settings - Fork 521
/
Copy pathMapImageSublayerQuery.xaml
42 lines (42 loc) · 1.8 KB
/
MapImageSublayerQuery.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
<UserControl x:Class="ArcGIS.WPF.Samples.MapImageSublayerQuery.MapImageSublayerQuery"
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 />
<RowDefinition />
<RowDefinition />
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition />
<ColumnDefinition />
</Grid.ColumnDefinitions>
<TextBlock Grid.Row="0"
Grid.Column="0"
Margin="0,5,5,0"
HorizontalAlignment="Right"
VerticalAlignment="Center"
Text="[POP2000] > " />
<TextBox x:Name="PopulationTextBox"
Grid.Row="0"
Grid.Column="1"
Margin="0,5,0,0"
HorizontalAlignment="Stretch"
VerticalAlignment="Center"
HorizontalContentAlignment="Center"
Text="1810000" />
<Button x:Name="QuerySublayers"
Grid.Row="2"
Grid.Column="0"
Grid.ColumnSpan="2"
Margin="0,5,0,0"
Click="QuerySublayers_Click"
Content="Query in extent" />
</Grid>
</Border>
</Grid>
</UserControl>