【C#】WPF和Winform两种开发方式下程序启动的区别
当前位置:点晴教程→知识管理交流
→『 技术文档交流 』
01 — winform启动程序 winform的启动程序默认是在program类中启动的,这是一个静态类,里面有一个静态的Main方法。Application.Run(new 窗体); internal static class Program { /// <summary> /// 应用程序的主入口点。 /// </summary> [STAThread] static void Main() { Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); Application.Run(new Form1()); } } 02 — WPF启动程序 WPF启动程序是在App.xaml文件中启动的,App.xaml 文件定义了应用程序的资源和全局样式,里面有一个StartupUri="窗体.xaml";应用程序类负责创建应用程序的主窗口(Window)并通过调用 Run 方法来启动应用程序的消息循环。 <Application x:Class="WPF.App" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:local="clr-namespace:WPF" StartupUri="MainWindow.xaml"> <Application.Resources> </Application.Resources> </Application> 03 — 总结
该文章在 2023/10/25 10:10:39 编辑过 |
关键字查询
相关文章
正在查询... |