From ec3141e02a632dd78adc5b473534628d49473708 Mon Sep 17 00:00:00 2001 From: j502647092 Date: Sun, 20 Sep 2015 22:59:57 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E6=B3=A8=E5=86=8C=E7=95=8C?= =?UTF-8?q?=E9=9D=A2...?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CTZLauncher/CTZLauncher.csproj | 7 +++++++ CTZLauncher/RegisterWindow.xaml | 20 ++++++++++++++++++++ CTZLauncher/RegisterWindow.xaml.cs | 26 ++++++++++++++++++++++++++ 3 files changed, 53 insertions(+) create mode 100644 CTZLauncher/RegisterWindow.xaml create mode 100644 CTZLauncher/RegisterWindow.xaml.cs diff --git a/CTZLauncher/CTZLauncher.csproj b/CTZLauncher/CTZLauncher.csproj index cce0e0b..2b63004 100644 --- a/CTZLauncher/CTZLauncher.csproj +++ b/CTZLauncher/CTZLauncher.csproj @@ -102,6 +102,9 @@ + + RegisterWindow.xaml + MSBuild:Compile Designer @@ -138,6 +141,10 @@ MainWindow.xaml Code + + Designer + MSBuild:Compile + diff --git a/CTZLauncher/RegisterWindow.xaml b/CTZLauncher/RegisterWindow.xaml new file mode 100644 index 0000000..8cc59c5 --- /dev/null +++ b/CTZLauncher/RegisterWindow.xaml @@ -0,0 +1,20 @@ + + + + + + + diff --git a/CTZLauncher/RegisterWindow.xaml.cs b/CTZLauncher/RegisterWindow.xaml.cs new file mode 100644 index 0000000..02ab8d0 --- /dev/null +++ b/CTZLauncher/RegisterWindow.xaml.cs @@ -0,0 +1,26 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +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.Shapes; + +namespace CTZLauncher +{ + /// + /// Window1.xaml 的交互逻辑 + /// + public partial class Window1 : Window + { + public Window1() + { + InitializeComponent(); + } + } +}