forked from Esri/arcgis-maps-sdk-dotnet-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFeatureLayerQuery.xaml
21 lines (21 loc) · 973 Bytes
/
FeatureLayerQuery.xaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<UserControl
x:Class="ArcGISRuntime.UWP.Samples.FeatureLayerQuery.FeatureLayerQuery"
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>
<TextBlock Text="Enter a state name and press 🔎 to search."
TextAlignment="Center" FontWeight="SemiBold"
IsColorFontEnabled="False"
Margin="0,0,0,5" />
<AutoSuggestBox Text="New York"
QueryIcon="Find"
HorizontalAlignment="Stretch"
QuerySubmitted="QueryEntry_QuerySubmitted" />
</StackPanel>
</Border>
</Grid>
</UserControl>