Files
Prog4_Beadando/WD7UVN_SzTGUI_2023242.Client.WPF/MainWindow.xaml.cs

37 lines
761 B
C#
Raw Normal View History

2024-03-26 12:54:51 +01:00
using System.Windows;
namespace WD7UVN_SzTGUI_2023242.Client.WPF
{
/// <summary>
/// Interaction logic for MainWindow.xaml
/// </summary>
public partial class MainWindow : Window
{
public MainWindow()
{
InitializeComponent();
}
2024-03-26 12:54:51 +01:00
private void ExpandAllServices(object sender, RoutedEventArgs e)
{
2024-04-03 12:24:12 +02:00
Window window = new GetAllServices();
window.Show();
2024-03-26 12:54:51 +01:00
}
private void ExpandAllCustomers(object sender, RoutedEventArgs e)
{
}
private void ExpandAllEmployees(object sender, RoutedEventArgs e)
2024-03-26 12:54:51 +01:00
{
}
private void ExpandAllMaintainerTeams(object sender, RoutedEventArgs e)
2024-03-26 12:54:51 +01:00
{
}
}
}