/*Form1.cs文件*/
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace FormsTest
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent(); //初始化控件
}
private void button1_Click(object sender, EventArgs e) // button1
的單擊事件
{
MessageBox.Show("你單擊了左邊的button1按鈕。"); //彈出消息框
}
private void button2_Click(object sender, EventArgs e) // button2
的單擊事件
{
MessageBox.Show("你單擊了右邊的button2按鈕。"); //彈出消息框
}
}
}
從上面的代碼可以發現,代碼被寫在了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());
}
}
}