使用过的编程语言不少了,初步接触C#,以一个简单的窗体应用程序的开发入手,以下是开发的详细过程。
开发环境为Visual Studio 2017
1)打开Visual Studio 2017,新建项目(文件→新建→项目);
2)在左侧选择编程语言“Visual C#”,应用程序类别选择“Windows桌面”,再在中间的选择窗中选择“Windows窗体应用(.NET Framework)”,填写项目名称和保存路径,选择. NET Framework框架版本后,点击确定即可创建一个新的Windows窗体应用程序。
新建项目
3)项目创建完成后会自动打开,此时显示界面中会有一个窗体(Form1)
新窗体项目程序界面
1)点击左侧的“工具箱”→“公共控件”,拖拽2个“Button”控件和1个“Label”控件至窗体中
2)选中控件可在修改控件的相关属性,修改“label”控件的属性示例(修改后的属性将加粗显示):
针对label控件的属性修改
调整窗体控件布局
双击按钮控件“Start”,会自动产生窗体控制脚本,其中“private void Start_Click(object sender, EventArgs e)”函数为对应的“Start”按钮单击事件的响应代码,我们在其中添加如下代码(第22行)。 该代码为当单击“Start”按钮时,会在label控件中显示“Hello,World! ”文本。
usingSystem;usingSystem.Collections.Generic;usingSystem.ComponentModel;usingSystem.Data;usingSystem.Drawing;usingSystem.Linq;usingSystem.Text;usingSystem.Threading.Tasks;usingSystem.Windows.Forms; namespace WindowsFormsApp2 {publicpartialclassForm1 : Form {publicForm1() { InitializeComponent(); } privatevoidStart_Click(objectsender, EventArgs e) { label.Text = "Hello,World!"; } } }
双击按钮控件“Exit”,会在原来的代码中自动新增“private void Exit_Click(object sender, EventArgs e)”函数,该函数为对应的“Exit”按钮单击事件的响应代码,我们在其中添加如下代码。 该代码为当单击“Exit”按钮时,会在label控件中显示“Exit Now! ”文本,并在3秒钟后退出程序的运行。
privatevoidExit_Click(objectsender, EventArgs e){ label.Text ="Exit Now!"; label.Refresh(); Thread.Sleep(3000); Application.Exit(); }
由于使用了Thread.Sleep()函数,需要修改使用到的命名空间,即注释掉“using System.Threading.Tasks; ”,添加“using System.Threading; ”
//usingSystem.Threading.Tasks;usingSystem.Threading;
完整代码如下所示:
usingSystem;usingSystem.Collections.Generic;usingSystem.ComponentModel;usingSystem.Data;usingSystem.Drawing;usingSystem.Linq;usingSystem.Text; //usingSystem.Threading.Tasks;usingSystem.Threading;usingSystem.Windows.Forms; namespace WindowsFormsApp2 {publicpartialclassForm1 : Form {publicForm1() { InitializeComponent(); } privatevoidStart_Click(objectsender, EventArgs e) { label.Text = "Hello,World!"; } privatevoidExit_Click(objectsender, EventArgs e) { label.Text = "Exit Now!"; label.Refresh(); Thread.Sleep(3000); Application.Exit(); } } }
按下F5键或点击“运行按钮”,可查看程序运行效果。
当单击“启动”按钮时,运行效果如下:
单击启动按钮的事件响应
当单击“退出”按钮时,运行效果如下(3s后自动关闭程序):
单击退出按钮的事件响应
6、总结
基于C#开发简单窗体应用程序还是比较方便的,结合了图形化界面开发和代码开发。
全部0条评论
快来发表一下你的评论吧 !