1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| using System.Windows;
|
| namespace WpfUI
| {
| /// <summary>
| /// App.xaml 的交互逻辑
| /// </summary>
| public partial class App : Application
| {
| private void Application_Startup(object sender, StartupEventArgs e)
| {
| Window1 window = new Window1();
| window.Show();
| }
| }
| }
|
|