forked from Esri/arcgis-maps-sdk-dotnet-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMapImageSublayerQuery.xaml
36 lines (36 loc) · 1.71 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
<UserControl x:Class="ArcGISRuntime.UWP.Samples.MapImageSublayerQuery.MapImageSublayerQuery"
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"/>
<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"
HorizontalAlignment="Right" VerticalAlignment="Center"
FontWeight="SemiBold"
Margin="0,0,0,5"
Text="[POP2000] > " />
<TextBox x:Name="PopulationTextBox"
Grid.Row="0" Grid.Column="1"
Margin="5,0,0,5"
HorizontalAlignment="Stretch" VerticalAlignment="Center" HorizontalContentAlignment="Right"
Text="1810000" />
<Button x:Name="QuerySublayers"
Grid.Row="2" Grid.Column="0" Grid.ColumnSpan="2"
HorizontalAlignment="Stretch"
Content="Query in extent"
Click="QuerySublayers_Click"/>
</Grid>
</Border>
</Grid>
</UserControl>