2013-10-07 71 views

回答

0

實現窗體的Load事件處理程序並在那裏設置屬性。例如:

public void MyForm_OnLoad(object sender, EventArgs e) 
{ 
    MyTextBox.Text = "Hello!"; 
} 
+0

我在我的項目多於15點的形式和各種形式的有超過15個controls.is這個好辦法嗎? –

0

您可以使用窗體加載事件

public void yourform_load(object sender, EventArgs e) 
{ 
//Set attributes here 
} 
+0

thanx您的回覆。我的項目中有15種以上的形式,每種形式都有15種以上的控件,還有其他方法嗎? –

相關問題