agrobot_base/Exemplos/Aspose.GIS-for-.NET-master/Apps/Geo.Viewer/MainWindow.xaml

22 lines
933 B
XML

<Window x:Class="Geo.Viewer.WPF.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:Geo.Viewer.WPF"
mc:Ignorable="d"
Title="PanelGeometryViewer" Height="450" Width="800">
<Grid x:Name="myGrid">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="1*"/>
<ColumnDefinition Width="2*"/>
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
<RowDefinition Height="10px"/>
<RowDefinition Height="1*"/>
<RowDefinition Height="10px"/>
</Grid.RowDefinitions>
<Image x:Name="GeometryContainer" Grid.Column="1" Grid.Row="1"/>
</Grid>
</Window>