-
Notifications
You must be signed in to change notification settings - Fork 531
Expand file tree
/
Copy pathReadShapefileMetadata.xaml
More file actions
51 lines (51 loc) · 2.38 KB
/
ReadShapefileMetadata.xaml
File metadata and controls
51 lines (51 loc) · 2.38 KB
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
41
42
43
44
45
46
47
48
49
50
51
<UserControl x:Class="ArcGIS.WinUI.Samples.ReadShapefileMetadata.ReadShapefileMetadata"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:data="using:Esri.ArcGISRuntime.Data"
xmlns:esriUI="using:Esri.ArcGISRuntime.UI"
xmlns:esriControls="using:Esri.ArcGISRuntime.UI.Controls">
<Grid>
<esriControls:MapView x:Name="MyMapView" />
<Border Style="{StaticResource BorderStyle}">
<Grid x:Name="InfoPanel">
<Grid.RowDefinitions>
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="Auto" />
<ColumnDefinition Width="*" />
</Grid.ColumnDefinitions>
<TextBlock Grid.Row="0"
Grid.Column="0"
Grid.ColumnSpan="2"
FontWeight="SemiBold"
Text="{Binding Credits}"
TextAlignment="Center" />
<TextBlock Grid.Row="1"
Grid.Column="0"
Grid.ColumnSpan="2"
Text="{Binding Summary}"
TextWrapping="Wrap" />
<Image Grid.Row="2"
Grid.Column="0"
Grid.ColumnSpan="2"
Margin="10"
Source="{x:Bind esriUI:RuntimeImageExtensions.ToImageSource(((data:ShapefileInfo)InfoPanel.DataContext).Thumbnail), Mode=OneWay}"/>
<TextBlock Grid.Row="3"
Grid.Column="0"
VerticalAlignment="Center"
FontWeight="SemiBold"
Text="Tags:" />
<ListBox Grid.Row="3"
Grid.Column="1"
Height="80"
Margin="10,0"
HorizontalAlignment="Stretch"
ItemsSource="{Binding Tags}" />
</Grid>
</Border>
</Grid>
</UserControl>