20 lines
900 B
XML
20 lines
900 B
XML
<Window x:Class="WpfMapView2D.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:glWpfControl="clr-namespace:OpenTK.Wpf;assembly=GLWpfControl"
|
|
xmlns:local="clr-namespace:WpfMapView2D"
|
|
mc:Ignorable="d"
|
|
Title="MainWindow" Height="450" Width="800">
|
|
<Grid>
|
|
<Grid Margin="0,0,0,20">
|
|
<glWpfControl:GLWpfControl
|
|
x:Name="OpenTkControl"
|
|
Render="OpenTkControl_OnRender" MouseLeftButtonDown="OpenTkControl_MouseLeftButtonDown"
|
|
/>
|
|
</Grid>
|
|
<StatusBar Name="statusBarData" Height="20" VerticalAlignment="Bottom"/>
|
|
|
|
</Grid>
|
|
</Window>
|