-
Notifications
You must be signed in to change notification settings - Fork 524
/
Copy pathStatisticalQuery.xaml
34 lines (34 loc) · 1.58 KB
/
StatisticalQuery.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
<UserControl x:Class="ArcGIS.WinUI.Samples.StatisticalQuery.StatisticalQuery"
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}">
<StackPanel>
<CheckBox x:Name="OnlyInExtentCheckbox" Content="Cities in current extent" />
<CheckBox x:Name="OnlyBigCitiesCheckbox" Content="Cities larger than 5M" />
<Button Margin="0,5,0,0"
HorizontalAlignment="Stretch"
Click="OnExecuteStatisticsQuery_Clicked"
Content="Get statistics" />
<TextBlock Text="Statistics will be rounded to the nearest integer." TextWrapping="Wrap" />
</StackPanel>
</Border>
<Border x:Name="Results"
HorizontalAlignment="Center"
VerticalAlignment="Center"
Visibility="Collapsed"
Style="{StaticResource BorderStyle}">
<StackPanel>
<ListBox x:Name="StatsResultsListBox"
Margin="0,5,0,5"
HorizontalAlignment="Stretch"/>
<Button
Click="DismissButton_Clicked"
HorizontalAlignment="Stretch"
Content="Dismiss" />
</StackPanel>
</Border>
</Grid>
</UserControl>