下面是Visual Studio在創建新表單項時自動生成的內容的示例。表單對象的返回類型
private void comboBox1_SelectedIndexChanged(object sender, EventArgs e) // background color
{
}
以下是我的getter
。
public type comboBox2Object { // text color
get {
return this.comboBox2;
}
}
我希望能在我的主要方法使用類似settings.comboBox2Object.Text
,因此我的問題是 - 我應該怎麼設置我的getter方法的返回類型?
注:
以前,我這是怎麼做的:
public type comboBox2Color { // text color
get {
return this.comboBox2.Text;
}
}
然而,屬性開始堆積快,因此,我很感興趣,只返回ComboBox對象,並在我的主要方法中使用各種方法,如.SelectedIndex
,Enabled
等。
Visual Studio中沒有自動創建活動。當您在該窗體項目的屬性窗口(事件選項卡)中雙擊某個事件時會發生這種情況。 – scheien