熱點推薦:
您现在的位置: 電腦知識網 >> 編程 >> .NET編程 >> 正文

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

2022-06-13   來源: .NET編程 
該代碼存放於Formcs中

  /*Formcs文件*/

  using System;

  using SystemCollectionsGeneric;

  using SystemComponentModel;

  using SystemData;

  using SystemDrawing;

  using SystemText;

  using SystemWindowsForms;

  namespace FormsTest

  {

  public partial class Form : Form

  {

  public Form()

  {

  InitializeComponent(); //初始化控件

  }

  private void button_Click(object sender EventArgs e) // button

  的單擊事件

  {

  MessageBoxShow(你單擊了左邊的button按鈕); //彈出消息框

  }

  private void button_Click(object sender EventArgs e) // button

  的單擊事件

  {

  MessageBoxShow(你單擊了右邊的button按鈕); //彈出消息框

  }

  }

  }

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

  /* Programcs文件*/

  using System;

  using SystemCollectionsGeneric;

  using SystemWindowsForms;

  namespace FormsTest

  {

  static class Program

  {

  /// <summary>

  /// 應用程序的主入口點

  /// </summary>

  [STAThread]

  static void Main()

  {

  //啟用應用程序的可視樣式

  ApplicationEnableVisualStyles();

  //在應用程序范圍內設置控件顯示文本的默認方式

  ApplicationSetCompatibleTextRenderingDefault(false);

  //開始應用程序消息循環

  ApplicationRun(new Form());

  }

  }

  }


From:http://tw.wingwit.com/Article/program/net/201311/11292.html
    推薦文章
    Copyright © 2005-2022 電腦知識網 Computer Knowledge   All rights reserved.