[#15] DeliveryConfirmationsWindow: Replace with MailWindow

This commit is contained in:
2024-02-29 11:14:18 +01:00
parent e5c462b43f
commit 09a739d135
5 changed files with 23 additions and 159 deletions

View File

@ -65,7 +65,8 @@ namespace Elwig.Windows {
private void DeliveryConfirmationButton_Click(object sender, RoutedEventArgs evt) {
if (SeasonInput.Value is not int year)
return;
App.FocusDeliveryConfirmations(year);
var w = App.FocusMailWindow(year);
w.AddDeliveryConfirmation();
}
private async void OverUnderDeliveryButton_Click(object sender, RoutedEventArgs evt) {