32 lines
1.5 KiB
XML
32 lines
1.5 KiB
XML
<Window x:Class="Geo.Tools.Voronoi.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.Tools.Voronoi"
|
|
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" Height="52" Width="795">
|
|
<Border Width="266">
|
|
<Button Content="RandomPoints" Click="MapPoints_Click" FontSize="18px" />
|
|
</Border>
|
|
<Border Width="267">
|
|
<Button Content="RandomPolygons" Click="MapPolygons_Click" FontSize="18px" />
|
|
</Border>
|
|
<Border Width="267"/>
|
|
</StackPanel>
|
|
<TextBlock HorizontalAlignment="Center">Input sample amount</TextBlock>
|
|
<Border Background="WhiteSmoke" DockPanel.Dock="Bottom" Height="25px">
|
|
<TextBox PreviewTextInput="PreviewTextInput" x:Name="objsCount"></TextBox>
|
|
</Border>
|
|
</DockPanel>
|
|
</Window>
|