21 lines
971 B
XML
21 lines
971 B
XML
<Window x:Class="Geo.Map.Rendering.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="460" Width="800">
|
|
<DockPanel x:Name="MyPanel">
|
|
<Border DockPanel.Dock="Top">
|
|
<TextBlock/>
|
|
</Border>
|
|
<Border Background="WhiteSmoke" DockPanel.Dock="Top" Height="335">
|
|
<Image x:Name="pOutput" HorizontalAlignment="Center" Margin="10" />
|
|
</Border>
|
|
|
|
<StackPanel DockPanel.Dock="Bottom" Orientation="Horizontal" Margin="5" HorizontalAlignment="Center">
|
|
<Button Content="Self Colors" Click="SelfColors_Click" FontSize="18px" Padding="10" Margin="5" />
|
|
</StackPanel>
|
|
</DockPanel>
|
|
</Window>
|