元件的一些公共屬性不希望被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; }
}