程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> .NET實例教程 >> 如何讓.Net控件在設計時InitializeComponent()中不生成相關代碼

如何讓.Net控件在設計時InitializeComponent()中不生成相關代碼

編輯:.NET實例教程


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

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved