使用过的编程语言不少了,初步接触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! ”文本。
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace WindowsFormsApp2
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void Start_Click(object sender, EventArgs e)
{
label.Text = "Hello,World!";
}
}
}
双击按钮控件“Exit”,会在原来的代码中自动新增“private void Exit_Click(object sender, EventArgs e)”函数,该函数为对应的“Exit”按钮单击事件的响应代码,我们在其中添加如下代码。 该代码为当单击“Exit”按钮时,会在label控件中显示“Exit Now! ”文本,并在3秒钟后退出程序的运行。
private void Exit_Click(object sender, EventArgs e)
{
label.Text = "Exit Now!";
label.Refresh();
Thread.Sleep(3000);
Application.Exit();
}
由于使用了Thread.Sleep()函数,需要修改使用到的命名空间,即注释掉“using System.Threading.Tasks; ”,添加“using System.Threading; ”
// using System.Threading.Tasks;
using System.Threading;
完整代码如下所示:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
// using System.Threading.Tasks;
using System.Threading;
using System.Windows.Forms;
namespace WindowsFormsApp2
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void Start_Click(object sender, EventArgs e)
{
label.Text = "Hello,World!";
}
private void Exit_Click(object sender, EventArgs e)
{
label.Text = "Exit Now!";
label.Refresh();
Thread.Sleep(3000);
Application.Exit();
}
}
}
按下F5键或点击“运行按钮”,可查看程序运行效果。
当单击“启动”按钮时,运行效果如下:
单击启动按钮的事件响应
当单击“退出”按钮时,运行效果如下(3s后自动关闭程序):
单击退出按钮的事件响应
6、总结
基于C#开发简单窗体应用程序还是比较方便的,结合了图形化界面开发和代码开发。
全部0条评论
快来发表一下你的评论吧 !