Files
logofclient/MainWindow.axaml.cs
2025-07-01 15:33:15 +02:00

37 lines
900 B
C#

using Avalonia.Controls;
using Avalonia.Interactivity;
namespace Logof_Client;
public partial class MainWindow : Window
{
public MainWindow()
{
InitializeComponent();
}
private void MnuExit_OnClick(object? sender, RoutedEventArgs e)
{
throw new System.NotImplementedException();
}
private void MnuAbout_OnClick(object? sender, RoutedEventArgs e)
{
throw new System.NotImplementedException();
}
private void MnuSettings_OnClick(object? sender, RoutedEventArgs e)
{
throw new System.NotImplementedException();
}
private void MnuHelp_OnClick(object? sender, RoutedEventArgs e)
{
throw new System.NotImplementedException();
}
private void MnuGithub_OnClick(object? sender, RoutedEventArgs e)
{
throw new System.NotImplementedException();
}
}