Browse Source

Загрузить файлы ''

Lolipop 2 years ago
parent
commit
3bbb7e9c65
1 changed files with 13 additions and 0 deletions
  1. 13 0
      123.txt

+ 13 - 0
123.txt

@@ -0,0 +1,13 @@
+ if (ProductListBox.SelectedItems.Count >= 1)
+            {
+                Product product =(Product)ProductListBox.SelectedItem;
+                AddChangeProductWindow addChangeProductWindow = new AddChangeProductWindow(product);
+                if ((bool)addChangeProductWindow.ShowDialog())
+                {
+
+                }
+            }
+            else
+            {
+                MessageBox.Show("Выбрано более одного элемента");
+            }