从头开始编写Windows窗体应用程序

从头开始编写Windows窗体应用程序

ID:41004538

大小:38.31 KB

页数:4页

时间:2019-08-13

从头开始编写Windows窗体应用程序_第1页
从头开始编写Windows窗体应用程序_第2页
从头开始编写Windows窗体应用程序_第3页
从头开始编写Windows窗体应用程序_第4页
资源描述:

《从头开始编写Windows窗体应用程序》由会员上传分享,免费在线阅读,更多相关内容在工程资料-天天文库

1、从头开始编写Windows窗体应用程序1创建一个最简单的Windows窗体程序1.1在VS2008中创建一个空项目(EmptyProject)1.2添加新项目:CodeFile.cs1.3添加引用程序集:§System§System.Windows.Forms1.4在CodeFile.cs中输入:usingSystem;usingSystem.Windows.Forms;namespaceASimplestWindowsForm{publicclassForm1:Form{publicForm1(){}[STAT

2、hread]publicstaticvoidMain(){Application.EnableVisualStyles();Application.Run(newForm1());}}}1.5编译运行(见下图)1添加Button控件1.1添加新的引用程序集:§System.Drawing1.2在CodeFile.cs中输入(加粗字体为新添加部分):usingSystem;usingSystem.Drawing;usingSystem.Windows.Forms;namespaceASimplestWindowsF

3、orm{publicclassForm1:Form{publicButtonbutton1;publicForm1(){button1=newButton();button1.Size=newSize(80,40);button1.Location=newPoint(30,30);button1.Text="Clickme";this.Controls.Add(button1);}[STAThread]publicstaticvoidMain(){Application.EnableVisualStyles();

4、Application.Run(newForm1());}}}1.1编译运行(见下图)2添加Button控件单击事件处理2.1在CodeFile.cs中输入(加粗字体为新添加部分):usingSystem;usingSystem.Drawing;usingSystem.Windows.Forms;namespaceASimplestWindowsForm{publicclassForm1:Form{publicButtonbutton1;publicForm1(){button1=newButton();butt

5、on1.Size=newSize(80,40);button1.Location=newPoint(30,30);button1.Text="Clickme";this.Controls.Add(button1);button1.Click+=newEventHandler(button1_Click);}privatevoidbutton1_Click(objectsender,EventArgse){MessageBox.Show("HelloWorld");}[STAThread]publicstaticv

6、oidMain(){Application.EnableVisualStyles();Application.Run(newForm1());}}}1.1编译运行(见下图)2

当前文档最多预览五页,下载文档查看全文

此文档下载收益归作者所有

当前文档最多预览五页,下载文档查看全文
温馨提示:
1. 部分包含数学公式或PPT动画的文件,查看预览时可能会显示错乱或异常,文件下载后无此问题,请放心下载。
2. 本文档由用户上传,版权归属用户,天天文库负责整理代发布。如果您对本文档版权有争议请及时联系客服。
3. 下载前请仔细阅读文档内容,确认文档内容符合您的需求后进行下载,若出现内容与标题不符可向本站投诉处理。
4. 下载文档时可能由于网络波动等原因无法下载或下载错误,付费完成后未能成功下载的用户请联系客服处理。