雨落星沉
生而有涯,学而无涯。

 

 <Application x:Class="BlendWPF.App"
              xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
              xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
              xmlns:local="clr-namespace:BlendWPF"
              Startup="Application_Startup">
 </Application>
App.xaml

 

 

 1 using System.Windows;
 2 
 3 namespace BlendWPF
 4 {
 5     /// <summary>
 6     /// App.xaml 的交互逻辑
 7     /// </summary>
 8     public partial class App : Application
 9     {
10         private void Application_Startup(object sender, StartupEventArgs e)
11         {
12             View.Login.LoginView login = new View.Login.LoginView();
13             login.Show();
14         }
15     }
16 }    
App.xaml.cs

 

posted on 2019-11-11 10:20  雨落星沉  阅读(259)  评论(0)    收藏  举报