23 lines
1013 B
XML
23 lines
1013 B
XML
<Window x:Class="Geo.Advanced.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.Advanced.Viewer"
|
|
mc:Ignorable="d"
|
|
Title="MainWindow" Height="450" Width="800">
|
|
<Grid x:Name="myGrid">
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="2*"/>
|
|
<ColumnDefinition Width="1*"/>
|
|
</Grid.ColumnDefinitions>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="10px"/>
|
|
<RowDefinition Height="1*"/>
|
|
<RowDefinition Height="50px"/>
|
|
</Grid.RowDefinitions>
|
|
<Image x:Name="LayerContainer" Grid.Column="0" Grid.Row="1"/>
|
|
<Button Grid.Column="1" Grid.Row="2" Content="Show" Click="Show_Click" />
|
|
</Grid>
|
|
</Window>
|