16 lines
619 B
XML
16 lines
619 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"
|
|
Icon="pack://siteoforigin:,,,/assets/favicon.ico"
|
|
MinHeight="400" MinWidth="480"
|
|
Width="900" Height="700"
|
|
WindowStartupLocation="CenterScreen"
|
|
WindowState="Maximized">
|
|
<Grid>
|
|
<ContentControl Content="{Binding CurrentViewModel}"
|
|
HorizontalAlignment="Stretch"
|
|
VerticalAlignment="Stretch"/>
|
|
</Grid>
|
|
</Window>
|