36 lines
673 B
C#
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)
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|