12 lines
438 B
XML
12 lines
438 B
XML
<Window x:Class="UtopiaCanteenSystem.MainWindow"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
Title="Utopia Canteen System"
|
|
MinHeight="600" MinWidth="800"
|
|
WindowStartupLocation="CenterScreen"
|
|
SizeToContent="WidthAndHeight">
|
|
<Grid>
|
|
<ContentControl Content="{Binding CurrentViewModel}" />
|
|
</Grid>
|
|
</Window>
|