-
Notifications
You must be signed in to change notification settings - Fork 524
/
Copy pathDisplayUtilityAssociations.xaml
40 lines (40 loc) · 1.74 KB
/
DisplayUtilityAssociations.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
36
37
38
39
40
<ContentPage
x:Class="ArcGIS.Samples.DisplayUtilityAssociations.DisplayUtilityAssociations"
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"
NavigationCompleted="OnNavigationCompleted"
Style="{DynamicResource EsriSampleGeoView}" />
<Border Style="{DynamicResource EsriSampleControlPanel}">
<Grid ColumnSpacing="10">
<Grid.RowDefinitions>
<RowDefinition Height="auto" />
<RowDefinition Height="auto" />
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="auto" />
<ColumnDefinition Width="auto" />
</Grid.ColumnDefinitions>
<Label Grid.Row="0"
Grid.Column="1"
Padding="5"
Text="Attachment" />
<Label Grid.Row="1"
Grid.Column="1"
Padding="5"
Text="Connectivity" />
<Image x:Name="AttachmentImage"
Grid.Row="0"
Grid.Column="0"
WidthRequest="25" />
<Image x:Name="ConnectivityImage"
Grid.Row="1"
Grid.Column="0"
WidthRequest="25" />
</Grid>
</Border>
</Grid>
</ContentPage>