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(); + } + } +}