Files
Prog4_Beadando/WD7UVN_SzTGUI_2023242.Client.WPF/MainWindow.xaml.cs
MiskolcziRichard a3e4fdb5fd so many stuff
2024-03-26 12:54:51 +01:00

36 lines
673 B
C#

using System.Windows;
namespace WD7UVN_SzTGUI_2023242.Client.WPF
{
/// <summary>
/// Interaction logic for MainWindow.xaml
/// </summary>
public partial class MainWindow : Window
{
public MainWindow()
{
InitializeComponent();
}
private void ExpandAllServices(object sender, RoutedEventArgs e)
{
}
private void ExpandAllCustomers(object sender, RoutedEventArgs e)
{
}
private void ExpandAllClients(object sender, RoutedEventArgs e)
{
}
private void ExpandAllTeams(object sender, RoutedEventArgs e)
{
}
}
}