16 lines
357 B
C#
16 lines
357 B
C#
using System.Windows;
|
|
|
|
namespace UtopiaCanteenSystem;
|
|
|
|
/// <summary>
|
|
/// Main window: hosts the current view via ContentControl and DataTemplates.
|
|
/// DataContext is set from App.xaml.cs to MainViewModel. No logic in code-behind.
|
|
/// </summary>
|
|
public partial class MainWindow : Window
|
|
{
|
|
public MainWindow()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
}
|