將表單初始化成給定的規格涉及到對 TempConverter 對象的某些屬性進行設置
當的實例變量來直接修改
this
this
this
this
FormStartPosition
this
this
現在把這些代碼放在一起進行編譯和運行
初始化主窗口的外觀)
public class TempConverter : System
{
public TempConverter()
{
this
this
this
this
this
this
}
public static void Main()
{
Application
}
}
以上只有 Main() 方法所在行是新的代碼
Application
上面這一行的意思是用新表單來啟動應用程序
假設源文件叫做TempConverter
csc /r:System
WinForms
這裡不再詳細講解編譯命令
第二步 向表單中增加控件
接著的一步是向表單中增加控件
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
From:http://tw.wingwit.com/Article/program/net/201311/15053.html