diff --git a/Audit.csproj b/Audit.csproj index a04255e..b132dbf 100644 --- a/Audit.csproj +++ b/Audit.csproj @@ -143,6 +143,7 @@ + QueryView.xaml @@ -150,6 +151,9 @@ StatisticsView.xaml + + StuffView.xaml + help.xaml @@ -183,6 +187,10 @@ Designer MSBuild:Compile + + Designer + MSBuild:Compile + Designer MSBuild:Compile diff --git a/MainWindow.xaml b/MainWindow.xaml index 3b10429..89a2295 100644 --- a/MainWindow.xaml +++ b/MainWindow.xaml @@ -107,7 +107,8 @@ - + + diff --git a/MainWindow.xaml.cs b/MainWindow.xaml.cs index ebc4cbf..366c138 100644 --- a/MainWindow.xaml.cs +++ b/MainWindow.xaml.cs @@ -53,7 +53,8 @@ namespace Audit switch (button.Content.ToString()) { case "查询": container.Content = new QueryView(); break; - case "统计": container.Content = new StatisticsView(); break; + case "原料": container.Content = new StatisticsView(); break; + case "统计": container.Content = new StatisticsView(); break; default: break; } diff --git a/View/StatisticsView.xaml b/View/StatisticsView.xaml index 66c3237..5986b1d 100644 --- a/View/StatisticsView.xaml +++ b/View/StatisticsView.xaml @@ -61,7 +61,9 @@ - + + diff --git a/View/StuffView.xaml b/View/StuffView.xaml new file mode 100644 index 0000000..278dca3 --- /dev/null +++ b/View/StuffView.xaml @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/View/StuffView.xaml.cs b/View/StuffView.xaml.cs new file mode 100644 index 0000000..8b3e23d --- /dev/null +++ b/View/StuffView.xaml.cs @@ -0,0 +1,31 @@ +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 Audit.View +{ + /// + /// StuffView.xaml 的交互逻辑 + /// + public partial class StuffView : UserControl + { + /// + /// StuffView + /// + public StuffView() + { + InitializeComponent(); + } + } +} diff --git a/ViewModel/StuffViewModel.cs b/ViewModel/StuffViewModel.cs new file mode 100644 index 0000000..c5a0f89 --- /dev/null +++ b/ViewModel/StuffViewModel.cs @@ -0,0 +1,12 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Audit.ViewModel +{ + internal class StuffViewModel + { + } +}