[#15] MailWindow: Add Rundschreiben-Funktion

This commit is contained in:
2024-02-29 10:48:48 +01:00
parent 92c3ed991b
commit e5c462b43f
10 changed files with 922 additions and 50 deletions

View File

@ -0,0 +1,22 @@
using System;
using System.Windows.Input;
namespace Elwig.Helpers {
public class ActionCommand : ICommand {
public event EventHandler CanExecuteChanged;
private readonly Action Action;
public ActionCommand(Action action) {
Action = action;
}
public void Execute(object parameter) {
Action();
}
public bool CanExecute(object parameter) {
return true;
}
}
}