22 lines
976 B
XML
22 lines
976 B
XML
<Window x:Class="Geo.Layers.Conversion.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"
|
|
mc:Ignorable="d"
|
|
Title="MainWindow" Height="450" Width="800">
|
|
<DockPanel x:Name="MyPanel">
|
|
<Border DockPanel.Dock="Top">
|
|
<TextBlock/>
|
|
</Border>
|
|
<Border Background="Blue" DockPanel.Dock="Bottom" Height="100">
|
|
<Button Content="Convert" Click="LaunchButton_Click" FontSize="18px" />
|
|
</Border>
|
|
<Border Background="WhiteSmoke" >
|
|
<TextBox x:Name="pOutput" HorizontalAlignment="Left" IsReadOnly="True"
|
|
TextWrapping="Wrap" Background="Transparent"
|
|
BorderThickness="0" Margin="10" />
|
|
</Border>
|
|
</DockPanel>
|
|
</Window>
|