该代码存放于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()); } } } |