forked from Esri/arcgis-maps-sdk-dotnet-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFeatureLayerDefinitionExpression.xaml
36 lines (35 loc) · 1.56 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
28
29
30
31
32
33
34
35
<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:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:esri="using:Esri.ArcGISRuntime"
xmlns:esriUI="using:Esri.ArcGISRuntime.UI.Controls"
mc:Ignorable="d"
d:DesignHeight="300" d:DesignWidth="300">
<Grid>
<esriUI:MapView x:Name="MyMapView">
</esriUI:MapView>
<Border Background="White" Margin="20" Padding="20" VerticalAlignment="Top" HorizontalAlignment="Right" Width="320">
<RelativePanel HorizontalAlignment="Stretch">
<Button Content="Reset Expression"
HorizontalAlignment="Left"
Margin="10,10,0,0"
Padding="4"
VerticalAlignment="Top"
Width="Auto"
Click="OnResetButtonClicked"
RelativePanel.RightOf="ApplyButton" />
<Button x:Name="ApplyButton"
Content="Apply Expression"
HorizontalAlignment="Center"
Margin="10,10,0,0"
Padding="4"
VerticalAlignment="Top"
Width="Auto"
Click="OnApplyExpressionClicked" />
</RelativePanel>
</Border>
</Grid>
</UserControl>