コード例 #1
0
        private void List_Notification(object sender, MouseButtonEventArgs e)
        {
            if (ListNotification.SelectedItem != null)
            {
                ProductsSet        selectedProduct = (ProductsSet)ListNotification.SelectedItem;
                NotificationClient NCWindow        = new NotificationClient(selectedProduct);

                NCWindow.ShowDialog();
            }
        }
コード例 #2
0
ファイル: Index.xaml.cs プロジェクト: jose-sanchez/CPP
        private void List_Notification(object sender, MouseButtonEventArgs e)
        {
            if (ListNotification.SelectedItem != null)
            {
                ProductsSet selectedProduct = (ProductsSet)ListNotification.SelectedItem;
                NotificationClient NCWindow = new NotificationClient(selectedProduct);

                NCWindow.ShowDialog();

            }
        }