-
Notifications
You must be signed in to change notification settings - Fork 520
/
ConvexHullList.xaml
27 lines (27 loc) · 1.35 KB
/
ConvexHullList.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
<?xml version="1.0" encoding="utf-8" ?>
<ContentPage x:Class="ArcGIS.Samples.ConvexHullList.ConvexHullList"
xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:esriUI="clr-namespace:Esri.ArcGISRuntime.Maui;assembly=Esri.ArcGISRuntime.Maui">
<Grid Style="{DynamicResource EsriSampleContainer}">
<esriUI:MapView x:Name="MyMapView" Style="{DynamicResource EsriSampleGeoView}" />
<Border Style="{DynamicResource EsriSampleControlPanel}">
<Grid RowDefinitions="40,40,40" RowSpacing="5">
<StackLayout Grid.Row="0"
Orientation="Horizontal"
Spacing="5">
<Label Text="Union: " VerticalTextAlignment="Center" />
<Switch x:Name="ConvexHullListSwitch" IsToggled="True" />
</StackLayout>
<Button x:Name="ConvexHullListButton"
Grid.Row="1"
Clicked="ConvexHullListButton_Clicked"
Text="Convex Hull" />
<Button x:Name="ResetButton"
Grid.Row="2"
Clicked="ResetButton_Clicked"
Text="Reset" />
</Grid>
</Border>
</Grid>
</ContentPage>