-
Notifications
You must be signed in to change notification settings - Fork 520
/
ApplyMosaicRule.xaml
23 lines (23 loc) · 1.14 KB
/
ApplyMosaicRule.xaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<ContentPage x:Class="ArcGIS.Samples.ApplyMosaicRule.ApplyMosaicRule"
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"
xmlns:resources="clr-namespace:ArcGIS.Resources">
<Grid Style="{DynamicResource EsriSampleContainer}">
<esriUI:MapView x:Name="MyMapView" Style="{DynamicResource EsriSampleGeoView}" />
<Border Style="{DynamicResource EsriSampleControlPanel}">
<Grid Padding="5"
ColumnDefinitions="auto,auto"
ColumnSpacing="5"
RowDefinitions="auto">
<Label Grid.Column="0"
Text="Mosaic rule: "
VerticalTextAlignment="Center" />
<Picker x:Name="MosaicRulesPicker"
Grid.Column="1"
MinimumWidthRequest="150"
SelectedIndexChanged="MosaicRulesBox_SelectedIndexChanged" />
</Grid>
</Border>
</Grid>
</ContentPage>