diff --git a/MainWindow.axaml b/MainWindow.axaml index 926b0f9..7b031cf 100644 --- a/MainWindow.axaml +++ b/MainWindow.axaml @@ -79,6 +79,14 @@ + + + + + + + diff --git a/MainWindow.axaml.cs b/MainWindow.axaml.cs index 7f5b81f..4642944 100644 --- a/MainWindow.axaml.cs +++ b/MainWindow.axaml.cs @@ -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(); + + } + } }