agrobot_base/Exemplos/Aspose.GIS-for-.NET-master/Apps/Geo.Tools.Paths/MainWindow.xaml

20 lines
994 B
XML

<Window x:Class="Geo.Tools.Paths.MainWindow" SizeToContent="Width"
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.Paths"
mc:Ignorable="d"
Title="MainWindow" MinHeight="400" MinWidth="600">
<DockPanel x:Name="MyPanel">
<Border DockPanel.Dock="Top">
<TextBlock/>
</Border>
<Border Background="LightGray" DockPanel.Dock="Bottom" Height="100">
<DockPanel>
<Button Content="FindWay (Multiple)" Click="ComplexFindWay_Click" FontSize="18px" Margin="5" Padding="15" HorizontalAlignment="Center"/>
</DockPanel>
</Border>
<Image x:Name="GeometryContainer" DockPanel.Dock="Top"/>
</DockPanel>
</Window>