【C#】WPF和Winform兩種開發(fā)方式下程序啟動(dòng)的區(qū)別
當(dāng)前位置:點(diǎn)晴教程→知識(shí)管理交流
→『 技術(shù)文檔交流 』
01 — winform啟動(dòng)程序 winform的啟動(dòng)程序默認(rèn)是在program類中啟動(dòng)的,這是一個(gè)靜態(tài)類,里面有一個(gè)靜態(tài)的Main方法。Application.Run(new 窗體); internal static class Program { /// <summary> /// 應(yīng)用程序的主入口點(diǎn)。 /// </summary> [STAThread] static void Main() { Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); Application.Run(new Form1()); } } 02 — WPF啟動(dòng)程序 WPF啟動(dòng)程序是在App.xaml文件中啟動(dòng)的,App.xaml 文件定義了應(yīng)用程序的資源和全局樣式,里面有一個(gè)StartupUri="窗體.xaml";應(yīng)用程序類負(fù)責(zé)創(chuàng)建應(yīng)用程序的主窗口(Window)并通過調(diào)用 Run 方法來啟動(dòng)應(yīng)用程序的消息循環(huán)。 <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 — 總結(jié)
該文章在 2023/10/25 10:10:39 編輯過 |
關(guān)鍵字查詢
相關(guān)文章
正在查詢... |