chr
2024-09-04 d7be195b0e1949c7b38bce2ad83ae974cbfac094
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();
        }
    }
}