[feat:] integration of PreviewWindow for full sets

This commit is contained in:
2026-08-24 12:56:58 +02:00
parent 9aa467d9f0
commit 7ad0612170
2 changed files with 18 additions and 0 deletions
+10
View File
@@ -1377,4 +1377,14 @@ public partial class MainWindow : Window
BtnCombineAddressSetSortUp.IsEnabled = true;
}
}
private void MnIAdSetView_OnClick(object? sender, RoutedEventArgs e)
{
if (LstCustomerAdressSets.SelectedItems.Count > 0)
{
var preview = new PreviewWindow((LstCustomerAdressSets.SelectedItems[0] as KasAddressList).KasPersons);
preview.Show();
}
}
}