DeliveryConfirmationsDialog: move to DeliveryConfirmationsWindow

This commit is contained in:
2023-10-19 23:50:21 +02:00
parent 3cf3ca71d6
commit e46ddb9cdc
3 changed files with 8 additions and 7 deletions

View File

@ -51,8 +51,8 @@ namespace Elwig.Windows {
private void DeliveryConfirmationButton_Click(object sender, RoutedEventArgs evt) {
if (SeasonInput.Value is not int year)
return;
var d = new DeliveryConfirmationsDialog(year);
d.Show();
var w = new DeliveryConfirmationsWindow(year);
w.Show();
}
private async void OverUnderDeliveryButton_Click(object sender, RoutedEventArgs evt) {