C#编程三步走之二
2024-07-21 02:17:40
供稿:网友
将表单初始化成给定的规格涉及到对 tempconverter 对象的某些属
性进行设置。有些属性有改变值的方法,而其它属性则要通过更新适
当的实例变量来直接修改。下面是有关代码。如果想要得到关于
winforms
类的属性和方法的更多信息,那么 .net framework sdk 所提供的文
档可以算是一个很好的参考资料。
this.setsize(180,90);
this.borderstyle = formborderstyle.fixeddialog;
this.text = " +c -> +f / +f -> +c ";
this.startposition =
formstartposition.centerscreen;
this.helpbutton = false;
this.maximizebox = false;
现在把这些代码放在一起进行编译和运行,看看表单运行后是什么样
子。这里要使用类定义,创建一个构造器(其中要包含以上的代码来
初始化主窗口的外观),并且要创建一个主方法来创建类的一个例
示。以下是完成这一工作的代码:
public class tempconverter : system.winforms.form
{
public tempconverter() {
this.setsize(180,90);
this.borderstyle =
formborderstyle.fixeddialog;
this.text =" +c -> +f / +f -> +c ";
this.startposition =
formstartposition.centerscreen;
this.helpbutton = false;
this.maximizebox = false;
}
public static void main() {
application.run( new tempconverter() );
}
}
以上只有 main() 方法所在行是新的代码。
application.run(new tempconverter());
上面这一行的意思是用新表单来启动应用程序。
假设源文件叫做tempconverter.cs,那么执行以下的命令编译代码:
csc /r:system.dll /r:microsoft.win32.interop.dll /r:system.
winforms.dll tempconverter.cs
这里不再详细讲解编译命令,因为当visual studio .net可用时,就
不必要发出命令行的编译命令了。
第二步 向表单中增加控件
接着的一步是向表单中增加控件。我们为每个控件创建一个实例变
量,对这些新实例变量进行初始化,最后把每个控件都放在表单中。
这里是增加了控件之后表单的样子,以及更新过的代码:
public class tempconverter : system.winforms.form
{
label ltempfah = new label();
label ltempcel = new label();
textbox ttempfah = new textbox();
textbox ttempcel = new textbox();
button bnctof = new button();
button bnftoc = new button();
public tempconverter() {
this.setsize(180,90);
this.borderstyle =
formborderstyle.fixeddialog;
this.text =" +c -> +f / +f -> +c ";
this.startposition =
formstartposition.centerscreen;
this.helpbutton = false;
this.maximizebox = false;
ttempcel.tabindex = 0;
ttempcel.setsize(50,25);
ttempcel.setlocation(13,5);
ltempcel.tabstop = false;
ltempcel.text = "+c ";
ltempcel.setsize(25, 25);
ltempcel.setlocation(65,5);
ttempfah.tabindex = 1;
ttempfah.setsize(50,25);
ttempfah.setlocation(90,5);
ltempfah.tabstop = false;
ltempfah.text = "+f ";
ltempfah.setsize(25,25);
ltempfah.setlocation(142,5);
bnctof.tabindex = 2;
bnctof.text = "+c to +f ";
bnctof.setsize(70,25);
bnctof.setlocation(13,35);
bnftoc.tabindex = 3;
bnftoc.text = "+f to +c ";
bnftoc.setsize(70,25);
bnftoc.setlocation(90,35);
this.controls.add(ttempcel);
this.controls.add(ltempcel);
this.controls.add(ttempfah);
this.controls.add(ltempfah);
this.controls.add(bnctof);
this.controls.add(bnftoc);
}
以上代码首先创建两个标签、两个文本框和两个按钮,然后对每个控
件进行初始化并将其加入表单中。具体的含义如下:
- setsize() 初始化控件的尺寸
- setlocation() 初始化表单中控件的位置
- 设置控件的tabstop 属性为false表示这个控件从不被聚焦
- 设置tabindex 为 x 表示当敲击tab键x次后聚焦此控件
- 控件的text 属性表示显示在其上的文字信息
- this.controls.add() 表示在表单上放置一个控件,要快速地添
加每个控件,可以这么书写:this.controls = new
control[] { ttempcel, ltempcel, ttempfar?.}