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

27 lines
1.2 KiB
XML

<Window x:Class="Geo.Rasters.Viewer.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.Rasters.Viewer"
mc:Ignorable="d"
Title="MainWindow" 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="4*"/>
<RowDefinition Height="1*"/>
<RowDefinition Height="10px"/>
</Grid.RowDefinitions>
<Image x:Name="GeometryContainer" Grid.Column="1" Grid.Row="1"/>
<TextBox x:Name="pOutput" HorizontalAlignment="Left" IsReadOnly="True"
TextWrapping="Wrap" Background="Transparent"
BorderThickness="0" Margin="5,0,5,10" Grid.Row="1"/>
<Button Grid.Column="0" Grid.Row="2" Grid.RowSpan="1" Click="Button_Click">Show</Button>
</Grid>
</Window>