30 lines
1.3 KiB
XML
30 lines
1.3 KiB
XML
<Window x:Class="Geo.Epsg.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.Epsg.Viewer"
|
|
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="Search" Click="LaunchButton_Click" FontSize="18px" />
|
|
</Border>
|
|
<Viewbox StretchDirection="Both" MaxHeight="30" HorizontalAlignment="Left">
|
|
<StackPanel Orientation="Horizontal">
|
|
<TextBlock Margin="0, 0, 5, 0" Text="Epsg Code:" />
|
|
<TextBox x:Name="eWorkFolder" MinWidth="50" Text="4326" />
|
|
</StackPanel>
|
|
</Viewbox>
|
|
<Border Background="WhiteSmoke" >
|
|
<TextBox x:Name="pOutput" HorizontalAlignment="Left" IsReadOnly="True"
|
|
TextWrapping="Wrap" Background="Transparent"
|
|
BorderThickness="0" Margin="10" />
|
|
</Border>
|
|
|
|
</DockPanel>
|
|
</Window>
|