58 lines
1.8 KiB
C#
58 lines
1.8 KiB
C#
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 软件系统客户端Wpf
|
||
{
|
||
|
||
|
||
|
||
|
||
|
||
|
||
/***************************************************************************************
|
||
*
|
||
* 模版日期 2017-07-11
|
||
* 创建人 胡少林
|
||
* 版权所有 胡少林
|
||
* 授权说明 模版仅授权个人使用,如需商用,请联系hsl200909@163.com洽谈
|
||
* 说明一 JSON组件引用自james newton-king,遵循MIT授权协议
|
||
* 说明二 主题及各种主件来自:https://github.com/ButchersBoy/MaterialDesignInXamlToolkit
|
||
*
|
||
****************************************************************************************/
|
||
|
||
/***************************************************************************************
|
||
*
|
||
* 版本说明 最新版以github为准,由于提交更改比较频繁,需要经常查看官网地址:https://github.com/dathlin/C-S-
|
||
* 注意 本代码的相关操作未作密码验证,如有需要,请自行完成
|
||
* 如果 遇到启动调试就退出了,请注释掉App.xaml.cs文件中的指允许启动一个实例的代码
|
||
*
|
||
**************************************************************************************************/
|
||
|
||
|
||
|
||
|
||
|
||
/// <summary>
|
||
/// MainWindow.xaml 的交互逻辑
|
||
/// </summary>
|
||
public partial class MainWindow : Window
|
||
{
|
||
public MainWindow()
|
||
{
|
||
InitializeComponent();
|
||
}
|
||
}
|
||
}
|