示例#1
0
 static void Main()
 {
     Application.EnableVisualStyles();
     Application.SetCompatibleTextRenderingDefault(false);
     GestoreView.GetInstance().MostraView(typeof(LoginForm), typeof(LoginPresenter));
     Application.Run();
 }
示例#2
0
 void App_Startup(object sender, StartupEventArgs e)
 {
     GestoreView.GetInstance().MostraView(typeof(MainWindow), typeof(WindowPresenter));
 }