第二步 向表單中增加控件
接著的一步是向表單中增加控件
public class TempConverter : System
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
this
this
this
this
this
tTempCel
tTempCel
tTempCel
lTempCel
lTempCel
lTempCel
lTempCel
tTempFah
tTempFah
tTempFah
lTempFah
lTempFah
lTempFah
lTempFah
bnCtoF
bnCtoF
bnCtoF
bnCtoF
bnFtoC
bnFtoC
bnFtoC
bnFtoC
this
this
this
this
this
this
}
以上代碼首先創建兩個標簽
- SetSize() 初始化控件的尺寸
- SetLocation() 初始化表單中控件的位置
- 設置控件的TabStop 屬性為false表示這個控件從不被聚焦
- 設置TabIndex 為 X 表示當敲擊TAB鍵x次後聚焦此控件
- 控件的text 屬性表示顯示在其上的文字信息
- this
Control[] { tTempCel
From:http://tw.wingwit.com/Article/program/net/201311/12749.html