Vereinsmeisterschaften  22aa7800eae54b428d40e835886cefe1fdefdfdf
This is a software that can be used to manage the internal competition of the swimming club Illertissen called "Vereinsmeisterschaften".
Loading...
Searching...
No Matches
ShellWindow.xaml.cs
2
3using MahApps.Metro.Controls;
4
7
9
10public partial class ShellWindow : MetroWindow, IShellWindow
11{
12 public ShellWindow(ShellViewModel viewModel)
13 {
14 InitializeComponent();
15 DataContext = viewModel;
16 viewModel.WindowCloseRequested += (sender, e) => CloseWindow();
17 }
18
19 public Frame GetNavigationFrame()
20 => shellFrame;
21
22 public void ShowWindow()
23 => Show();
24
25 public void CloseWindow()
26 => Close();
27}
ViewModel for the main shell of the application.
void CloseWindow()
Closes the main shell window of the application.
Frame GetNavigationFrame()
Gets the navigation frame used for navigating between pages.
void ShowWindow()
Shows the main shell window of the application.
Interface for the main shell window of the application.