forked from Esri/arcgis-maps-sdk-dotnet-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathReadShapefileMetadata.xaml
41 lines (41 loc) · 1.95 KB
/
ReadShapefileMetadata.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
41
<UserControl
x:Class="ArcGISRuntime.WPF.Samples.ReadShapefileMetadata.ReadShapefileMetadata"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:esri="http://schemas.esri.com/arcgis/runtime/2013">
<Grid>
<esri:MapView x:Name="MyMapView" />
<Border Style="{StaticResource BorderStyle}" Width="300">
<Grid x:Name="InfoPanel">
<Grid.RowDefinitions>
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="160" />
<RowDefinition Height="100" />
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="Auto" />
<ColumnDefinition Width="*" />
</Grid.ColumnDefinitions>
<TextBlock Grid.Row="0" Grid.Column="0" Grid.ColumnSpan="2"
FontWeight="Bold" HorizontalAlignment="Center"
Text="{Binding Credits}" />
<TextBlock Grid.Row="1" Grid.Column="0" Grid.ColumnSpan="2"
Margin="5"
TextWrapping="Wrap"
Text="{Binding Summary}" />
<Image x:Name="ShapefileThumbnailImage"
Grid.Row="2" Grid.Column="0" Grid.ColumnSpan="2"
Margin="5" />
<TextBlock FontWeight="Bold" Margin="5"
VerticalAlignment="Center"
Grid.Row="3" Grid.Column="0"
Text="Tags:" />
<ListBox Height="80" HorizontalAlignment="Stretch"
Grid.Row="3" Grid.Column="1"
Margin="0,5,5,0"
ItemsSource="{Binding Tags}" />
</Grid>
</Border>
</Grid>
</UserControl>