WPF教程(十)使用App.xaml
阿新 • • 發佈:2019-01-28
與前面使用StartupUri屬性相比,這裡可以在顯示啟動視窗之前對它進行操作,例如改變標題。儘管不是很常用,這可以訂閱事件,或者顯示一個啟動介面。當你擁有所有的控制權,就有了很多種可能。在後面的章節我們會深入研究。<span style="font-size:14px;">using System; using System.Collections.Generic; using System.Windows; namespace WpfTutorialSamples { public partial class App : Application { private void Application_Startup(object sender, StartupEventArgs e) { // Create the startup window MainWindow wnd = new MainWindow(); // Do stuff here, e.g. to the window wnd.Title = "Something else"; // Show the window wnd.Show(); } } }</span>