forked from Esri/arcgis-maps-sdk-dotnet-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCutGeometry.xaml
23 lines (23 loc) · 1006 Bytes
/
CutGeometry.xaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<UserControl
x:Class="ArcGISRuntime.UWP.Samples.CutGeometry.CutGeometry"
x:Name="_this"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:ArcGISRuntime.UWP.Samples.CutGeometry"
xmlns:esriUI="using:Esri.ArcGISRuntime.UI.Controls">
<Grid>
<esriUI:MapView x:Name="MyMapView" />
<Border Style="{StaticResource BorderStyle}">
<StackPanel>
<TextBlock x:Name="CutInstructionsLabel"
Text="Click the 'Cut' button to cut the polygon with the polyline and see the resulting parts."
TextWrapping="Wrap"
Margin="0,0,0,10"/>
<Button x:Name="CutButton"
Content="Cut"
HorizontalAlignment="Stretch"
Click="CutButton_Click"/>
</StackPanel>
</Border>
</Grid>
</UserControl>