From 44fc240bd4e242cf8e5fbd7c30f8afb863b9ff99 Mon Sep 17 00:00:00 2001
From: maqiao <625215135@qq.com>
Date: Thu, 8 Aug 2024 08:47:17 +0800
Subject: [PATCH] =?UTF-8?q?=E4=BA=A4=E6=8E=A5=E6=9F=9C=E8=A1=A5=E8=8D=AF?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
DM_Weight/App.config | 2 +-
DM_Weight/App.xaml.cs | 3 +
DM_Weight/Models/ChannelStock.cs | 8 +
DM_Weight/Models/DrugInfo.cs | 2 +-
.../ViewModels/AddToJiaoJieDialogViewModel.cs | 439 ++++++++++++++++++
.../ViewModels/AddToJiaoJieWindowViewModel.cs | 235 +++++++++-
.../ViewModels/DrugListWindowViewModel.cs | 8 +-
DM_Weight/Views/AddToJiaoJieWindow.xaml | 141 +++++-
.../Views/Dialog/AddToJiaoJieDialog.xaml | 152 ++++++
.../Views/Dialog/AddToJiaoJieDialog.xaml.cs | 28 ++
10 files changed, 1006 insertions(+), 12 deletions(-)
create mode 100644 DM_Weight/ViewModels/AddToJiaoJieDialogViewModel.cs
create mode 100644 DM_Weight/Views/Dialog/AddToJiaoJieDialog.xaml
create mode 100644 DM_Weight/Views/Dialog/AddToJiaoJieDialog.xaml.cs
diff --git a/DM_Weight/App.config b/DM_Weight/App.config
index fbfd851..d9ffd44 100644
--- a/DM_Weight/App.config
+++ b/DM_Weight/App.config
@@ -3,7 +3,7 @@
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/DM_Weight/Views/Dialog/AddToJiaoJieDialog.xaml b/DM_Weight/Views/Dialog/AddToJiaoJieDialog.xaml
new file mode 100644
index 0000000..6057632
--- /dev/null
+++ b/DM_Weight/Views/Dialog/AddToJiaoJieDialog.xaml
@@ -0,0 +1,152 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/DM_Weight/Views/Dialog/AddToJiaoJieDialog.xaml.cs b/DM_Weight/Views/Dialog/AddToJiaoJieDialog.xaml.cs
new file mode 100644
index 0000000..92f8192
--- /dev/null
+++ b/DM_Weight/Views/Dialog/AddToJiaoJieDialog.xaml.cs
@@ -0,0 +1,28 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using System.Windows;
+using System.Windows.Controls;
+using System.Windows.Data;
+using System.Windows.Documents;
+using System.Windows.Input;
+using System.Windows.Media;
+using System.Windows.Media.Imaging;
+using System.Windows.Navigation;
+using System.Windows.Shapes;
+
+namespace DM_Weight.Views.Dialog
+{
+ ///
+ /// AddToJiaoJieDialog.xaml 的交互逻辑
+ ///
+ public partial class AddToJiaoJieDialog : UserControl
+ {
+ public AddToJiaoJieDialog()
+ {
+ InitializeComponent();
+ }
+ }
+}