13 lines
364 B
C#
13 lines
364 B
C#
using Avalonia.Controls;
|
|
using Avalonia.Interactivity;
|
|
|
|
namespace LehrerApp.Desktop.Views.Groups;
|
|
|
|
public partial class DeleteGroupDialog : Window
|
|
{
|
|
public DeleteGroupDialog() => InitializeComponent();
|
|
|
|
private void OnDelete(object? sender, RoutedEventArgs e) => Close(true);
|
|
private void OnCancel(object? sender, RoutedEventArgs e) => Close(false);
|
|
}
|