2010年7月27日 星期二

新增並配置視窗表單

加入表單至專案中
一、在設計的階段將表單加入至專案中
1、至「專案」按右鍵-->加入新項目-->Windows Forms,輸入Form的名稱

二、在表單所屬的程式碼中存取該表單的方法與屬性
1、VB->Me,C#->this
'VB
Me.Text = "aaa";
//C#
this.Text ="aaa";

三、在執行的階段將表單加入至專案中
'VB
Dim myForm As Form1
myForm = New Form1()

//C#
FormSmartAudit FormSmartAudit = new FormSmartAudit();
FormSmartAudit.lbl_UserID.Text = this.textUserId.Text;
FormSmartAudit.lbl_Company.Text = this.txtCompany.Text;
FormSmartAudit.lbl_CompanyID.Text = this.txtCompanyID.Text;
FormSmartAudit.oc_Stock = this.oc_Stock;
FormSmartAudit.ShowDialog();

沒有留言:

張貼留言