程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> 關於C語言 >> 一個典型的Windows窗體程序實例(2)

一個典型的Windows窗體程序實例(2)

編輯:關於C語言

從上面的代碼可以發現,代碼被寫在了Form1類裡邊;而前面的控制台應用程序都是寫在Program.cs的Program類裡,並且主要是寫在了Main函數裡。其實在Windows窗體應用程序中,也有Main函數。它和控制台應用程序中的Main一樣,也在Program.cs文件的Program類中,其代碼內容如下。

/* Program.cs文件*/

using System;
using System.Collections.Generic;
using System.Windows.Forms;
namespace FormsTest
{
  static class Program
  {
    /// <summary>
    /// 應用程序的主入口點
    /// </summary>
    [STAThread]
    static void Main()
    {
      //啟用應用程序的可視樣式
      Application.EnableVisualStyles();
      //在應用程序范圍內設置控件顯示文本的默認方式
      Application.SetCompatibleTextRenderingDefault(false);
      //開始應用程序消息循環
      Application.Run(new Form1());
    }
  }
}

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved