forked from Esri/arcgis-maps-sdk-dotnet-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFeatureLayerDefinitionExpression.xaml
27 lines (27 loc) · 1.15 KB
/
FeatureLayerDefinitionExpression.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
<UserControl
x:Class="ArcGISRuntime.UWP.Samples.FeatureLayerDefinitionExpression.FeatureLayerDefinitionExpression"
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.ColumnDefinitions>
<ColumnDefinition Width="*" />
<ColumnDefinition Width="*" />
</Grid.ColumnDefinitions>
<Button Content="Apply expression"
Grid.Column="0"
HorizontalAlignment="Stretch"
Margin="0,0,2.5,0"
Click="OnApplyExpressionClicked" />
<Button Content="Reset expression"
Grid.Column="1"
HorizontalAlignment="Stretch"
Margin="2.5,0,0,0"
Click="OnResetButtonClicked" />
</Grid>
</Border>
</Grid>
</UserControl>