組件的一些公共屬性不希望被VS在設計時加到InitializeComponent()方法中怎麼處理呢?我試過了,將屬性加上[Browsable(false)]也不行。
我的代碼如下:
/// <summary>
/// 控制器通訊類型下拉列表框。
/// </summary>
public class CommunicationTypeComboBox : ComboBox
{
/// <summary>
/// 構造列表框實例。
/// </summary>
public CommunicationTypeComboBox()
{
Items.Add("串口");
Items.Add("TCP");
}
/// <summary>
/// 獲取列表框中的所有項。
/// </summary>
[Browsable(false)]
public new ObjectCollection Items
{
get { return base.Items; }
}
}
將控件放到窗體上,VS回自動在InitializeComponent()方法中加入一下代碼。粗體部分。
//
// cmbCommunicationType
//
this.cmbCommunicationType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cmbCommunicationType.FormattingEnabled = true;
this.cmbCommunicationType.Items.AddRange(new object[] {
"串口",
"TCP"});
this.cmbCommunicationType.Location = new System.Drawing.Point(124, 66);
this.cmbCommunicationType.Name = "cmbCommunicationType";
this.cmbCommunicationType.SelectedItem = Xunmei.Door.CommunicationType.SerialPort;
this.cmbCommunicationType.Size = new System.Drawing.Size(121, 20);
this.cmbCommunicationType.TabIndex = 2;
this.cmbCommunicationType.SelectedIndexChanged += new System.EventHandler(this.cmbCommunicationType_SelectedIndExchanged);
隨著編輯次數的增會變成這樣。除了不在構造函數中增加項以外,有沒有辦法解決這個問題?
this.cmbCommunicationType.Items.AddRange(new object[] {
"串口",
"TCP",
"串口",
"TCP",
"串口",
"TCP",
"串口",
"TCP",
"串口",
"TCP"});
經過幾天的努力終於找到了DesignOnlyAttribute 類 。
指定某個屬性 (Property) 是否只能在設計時設置。
通過將 DesignOnlyAttribute 設置為 true 進行標記的成員只能在設計時進行設置。通常,這些屬性 (Property) 只能在設計時存在,並且不對應於運行時對象上的某個實際屬性 (Property)。
沒有屬性 (Attribute) 或通過將 DesignOnlyAttribute 設置為 false 進行標記的成員可以在運行時進行設置。默認為 false。
將CommunicationTypeComboBox的Items屬性加上DesignOnlyAttribute 就可以完美解決該問題。
/// <summary>
/// 獲取列表框中的所有項。
/// </summary>
[DesignOnly(false)]
public new ObjectCollection Items
{
get { return base.Items; }
}