diff --git a/Audit.csproj b/Audit.csproj
index 9a25a8e..8d14af5 100644
--- a/Audit.csproj
+++ b/Audit.csproj
@@ -141,7 +141,15 @@
+
+
+
+ QueryView.xaml
+
+
+ StatisticsView.xaml
+
help.xaml
@@ -167,6 +175,14 @@
Designer
MSBuild:Compile
+
+ Designer
+ MSBuild:Compile
+
+
+ Designer
+ MSBuild:Compile
+
Designer
MSBuild:Compile
diff --git a/Models/SQL_Ti.edmx.diagram b/Models/SQL_Ti.edmx.diagram
index bc3beab..90363eb 100644
--- a/Models/SQL_Ti.edmx.diagram
+++ b/Models/SQL_Ti.edmx.diagram
@@ -4,7 +4,7 @@
-
+
diff --git a/View/QueryView.xaml b/View/QueryView.xaml
new file mode 100644
index 0000000..89ce350
--- /dev/null
+++ b/View/QueryView.xaml
@@ -0,0 +1,14 @@
+
+
+
+
+
+
diff --git a/View/QueryView.xaml.cs b/View/QueryView.xaml.cs
new file mode 100644
index 0000000..07c449d
--- /dev/null
+++ b/View/QueryView.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
+{
+ ///
+ /// QueryView.xaml 的交互逻辑
+ ///
+ public partial class QueryView : Page
+ {
+ ///
+ /// QueryView
+ ///
+ public QueryView()
+ {
+ InitializeComponent();
+ }
+ }
+}
diff --git a/View/StatisticsView.xaml b/View/StatisticsView.xaml
new file mode 100644
index 0000000..a095bdb
--- /dev/null
+++ b/View/StatisticsView.xaml
@@ -0,0 +1,12 @@
+
+
+
+
+
diff --git a/View/StatisticsView.xaml.cs b/View/StatisticsView.xaml.cs
new file mode 100644
index 0000000..6cac792
--- /dev/null
+++ b/View/StatisticsView.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
+{
+ ///
+ /// StatisticsView.xaml 的交互逻辑
+ ///
+ public partial class StatisticsView : UserControl
+ {
+ ///
+ /// StatisticsView
+ ///
+ public StatisticsView()
+ {
+ InitializeComponent();
+ }
+ }
+}
diff --git a/ViewModel/QueryViewModel.cs b/ViewModel/QueryViewModel.cs
new file mode 100644
index 0000000..1d9af6b
--- /dev/null
+++ b/ViewModel/QueryViewModel.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 QueryViewModel
+ {
+ }
+}
diff --git a/ViewModel/StatisticsViewModel.cs b/ViewModel/StatisticsViewModel.cs
new file mode 100644
index 0000000..7a3b564
--- /dev/null
+++ b/ViewModel/StatisticsViewModel.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 StatisticsViewModel
+ {
+ }
+}