初学WPF之程序启动几种方式
生活随笔
收集整理的這篇文章主要介紹了
初学WPF之程序启动几种方式
小編覺得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.
1、第一種是默認(rèn)的方式,通過app.xaml中的StartupUri="MainWindow.xaml"配置的。
1 <Application x:Class="BaseElement.App" 2 xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" 3 xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" 4 StartupUri="MainWindow.xaml"> 5 <Application.Resources> 6 </Application.Resources> 7 </Application> View Code2、第二種是通過創(chuàng)建Application對(duì)象來啟動(dòng)程序。同時(shí)右擊工程->屬性->應(yīng)用程序->啟動(dòng)對(duì)象設(shè)為Startup就行了。
1 public class Startup 2 { 3 [STAThread] 4 public static void Main() 5 { 6 7 // Create the application. 8 Application app = new Application(); 9 // Create the main window. 10 MainWindow win = new MainWindow(); 11 // Launch the application and show the main window. 12 app.Run(win); 13 } 14 } View Code3、第三種是修改App.xaml.cs文件。添加Main方法。同時(shí)刪除app.g.cs文件中Main方法
1 /// <summary> 2 /// App.xaml 的交互邏輯 3 /// </summary> 4 public partial class App : Application 5 { 6 7 [STAThread()] 8 public static void Main() 9 { 10 BaseElement.App app = new BaseElement.App(); 11 app.InitializeComponent(); 12 app.Run(); 13 } 14 public void InitializeComponent() 15 { 16 this.StartupUri = new Uri("MainWindow.xaml", System.UriKind.Relative); 17 } 18 } View Code4、第四種也是修改App.xaml.cs文件,和第三種不太一樣。此方法還包括了如果傳遞command-line arguments(命令行參數(shù))
1 public partial class App : Application 2 { 3 [STAThread] 4 public static void Main() 5 { 6 App app = new App(); 7 app.Run(); 8 } 9 10 public App() 11 { 12 this.Startup += new StartupEventHandler(App_Startup); 13 } 14 15 private static void App_Startup(object sender, StartupEventArgs e) 16 { 17 // Create, but don't show the main window. 18 MainWindow win = new MainWindow(); 19 if (e.Args.Length > 0) 20 { 21 string file = e.Args[0]; 22 if (System.IO.File.Exists(file)) 23 { 24 // Configure the main window. 25 win.LoadFile(file); 26 } 27 } 28 else 29 { 30 // (Perform alternate initialization here when 31 // no command-line arguments are supplied.) 32 } 33 // This window will automatically be set as the Application.MainWindow. 34 win.Show(); 35 } 36 } View Code第一次寫博客,如果有什么問題請(qǐng)多多包含,我也是剛剛學(xué)習(xí)wpf,還是菜鳥!
轉(zhuǎn)載于:https://www.cnblogs.com/homingfly/p/3961627.html
總結(jié)
以上是生活随笔為你收集整理的初学WPF之程序启动几种方式的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 关于全角半角转换(转)
- 下一篇: c语言实现函数给主函数中的指针赋值的方法