Add DashboardWindow, controlls to close the login than open the dashboard

This commit is contained in:
Rene Schwarz
2021-04-04 21:22:13 +02:00
parent 5a1681498a
commit 73f864ea20
49 changed files with 729 additions and 24 deletions

View File

@@ -0,0 +1,28 @@
using System;
using System.Collections.Generic;
using System.Text;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Shapes;
namespace Server_Dashboard.Views {
/// <summary>
/// Interaktionslogik für DashboardWindow.xaml
/// </summary>
public partial class DashboardWindow : Window {
public DashboardWindow() {
InitializeComponent();
}
private void Grid_Loaded(object sender, RoutedEventArgs e) {
foreach(Button b in TopBarGrid.Children) {
//b.Template.FindName("TopBarButtonImage")
}
}
}
}