Files
BeWoPlaner/BeWo/MainWindow.xaml

17 lines
493 B
Plaintext
Raw Normal View History

2025-04-03 16:47:50 +02:00
<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">
2016-06-27 01:45:38 +02:00
<Grid x:Name="rootGrid">
2025-04-03 16:47:50 +02:00
<ComboBox Width="100" />
2016-06-27 01:45:38 +02:00
</Grid>
</Window>