我是GUI開發新手,我試圖用winforms和WPF開發一個樣本ui應用程序。Winforms和WPF中的應用程序類
我發現一些代碼在WPF
namespace WindowsFormsApplication3
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Form1());
}
}
}
- 爲什麼創建項目時
- 爲什麼我們正在使用的應用程序類的代碼沒有出現在WPF失蹤,什麼是需要這個班?
什麼用這個應用程序類的? – Racs 2013-02-25 11:33:01
它開始你的應用程序,你可以重寫一些方法,並選擇如何啓動你的應用程序,爲你的應用程序應用來一般配置和錯誤處理 – JMan 2013-02-25 11:36:39