忱 沈 4 years ago
parent
commit
5a80cea32f
  1. 16
      Audit.csproj
  2. 2
      Models/SQL_Ti.edmx.diagram
  3. 14
      View/QueryView.xaml
  4. 31
      View/QueryView.xaml.cs
  5. 12
      View/StatisticsView.xaml
  6. 31
      View/StatisticsView.xaml.cs
  7. 12
      ViewModel/QueryViewModel.cs
  8. 12
      ViewModel/StatisticsViewModel.cs

16
Audit.csproj

@ -141,7 +141,15 @@
<Compile Include="AuditData.cs" /> <Compile Include="AuditData.cs" />
<Compile Include="ViewModel\LogViewModel.cs" /> <Compile Include="ViewModel\LogViewModel.cs" />
<Compile Include="ViewModel\MainViewModel.cs" /> <Compile Include="ViewModel\MainViewModel.cs" />
<Compile Include="ViewModel\QueryViewModel.cs" />
<Compile Include="ViewModel\StatisticsViewModel.cs" />
<Compile Include="ViewModel\ViewModelLocator.cs" /> <Compile Include="ViewModel\ViewModelLocator.cs" />
<Compile Include="View\QueryView.xaml.cs">
<DependentUpon>QueryView.xaml</DependentUpon>
</Compile>
<Compile Include="View\StatisticsView.xaml.cs">
<DependentUpon>StatisticsView.xaml</DependentUpon>
</Compile>
<Compile Include="Windows\help.xaml.cs"> <Compile Include="Windows\help.xaml.cs">
<DependentUpon>help.xaml</DependentUpon> <DependentUpon>help.xaml</DependentUpon>
</Compile> </Compile>
@ -167,6 +175,14 @@
<SubType>Designer</SubType> <SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator> <Generator>MSBuild:Compile</Generator>
</Page> </Page>
<Page Include="View\QueryView.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
</Page>
<Page Include="View\StatisticsView.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
</Page>
<Page Include="Windows\help.xaml"> <Page Include="Windows\help.xaml">
<SubType>Designer</SubType> <SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator> <Generator>MSBuild:Compile</Generator>

2
Models/SQL_Ti.edmx.diagram

@ -4,7 +4,7 @@
<edmx:Designer xmlns="http://schemas.microsoft.com/ado/2009/11/edmx"> <edmx:Designer xmlns="http://schemas.microsoft.com/ado/2009/11/edmx">
<!-- Diagram content (shape and connector positions) --> <!-- Diagram content (shape and connector positions) -->
<edmx:Diagrams> <edmx:Diagrams>
<Diagram DiagramId="89d520d3675442b5b0979c510546a2e9" Name="Diagram1" ZoomLevel="79"> <Diagram DiagramId="89d520d3675442b5b0979c510546a2e9" Name="Diagram1" ZoomLevel="60">
<EntityTypeShape EntityType="TicketModel.Product" Width="1.5" PointX="0.75" PointY="0.75" IsExpanded="true" /> <EntityTypeShape EntityType="TicketModel.Product" Width="1.5" PointX="0.75" PointY="0.75" IsExpanded="true" />
<EntityTypeShape EntityType="TicketModel.UserAccount" Width="1.5" PointX="3.5" PointY="3.625" IsExpanded="true" /> <EntityTypeShape EntityType="TicketModel.UserAccount" Width="1.5" PointX="3.5" PointY="3.625" IsExpanded="true" />
</Diagram> </Diagram>

14
View/QueryView.xaml

@ -0,0 +1,14 @@
<Page x:Class="Audit.View.QueryView"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:local="clr-namespace:Audit.View"
mc:Ignorable="d"
d:DesignHeight="450" d:DesignWidth="800"
Title="QueryView">
<Grid>
</Grid>
</Page>

31
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
{
/// <summary>
/// QueryView.xaml 的交互逻辑
/// </summary>
public partial class QueryView : Page
{
///<Summary>
/// QueryView
///</Summary>
public QueryView()
{
InitializeComponent();
}
}
}

12
View/StatisticsView.xaml

@ -0,0 +1,12 @@
<UserControl x:Class="Audit.View.StatisticsView"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:local="clr-namespace:Audit.View"
mc:Ignorable="d"
d:DesignHeight="450" d:DesignWidth="800">
<Grid>
</Grid>
</UserControl>

31
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
{
/// <summary>
/// StatisticsView.xaml 的交互逻辑
/// </summary>
public partial class StatisticsView : UserControl
{
///<Summary>
/// StatisticsView
///</Summary>
public StatisticsView()
{
InitializeComponent();
}
}
}

12
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
{
}
}

12
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
{
}
}
Loading…
Cancel
Save