17 lines
493 B
XML
17 lines
493 B
XML
<Window
|
|
x:Class="BeWo.MainWindow"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
Title="BeWoPlaner"
|
|
Width="1024"
|
|
Height="768"
|
|
BorderThickness="1"
|
|
Closing="MainWindow_OnClosing"
|
|
SizeChanged="Window_SizeChanged"
|
|
WindowStartupLocation="CenterScreen"
|
|
WindowState="Maximized">
|
|
<Grid x:Name="rootGrid">
|
|
<ComboBox Width="100" />
|
|
</Grid>
|
|
</Window>
|