.NET架構-詳解Winform技術中組件被容器引用陷阱

來源:互聯網
上載者:User
  .net(C#) WinForm開發,因為是可視化設計,所以可以通過手動,直接將某個需要的組件加入到設計介面中,.net會自動將初始化這個組件,包括屬性設定等,添加到InitilizeComponent()中,並且這個組件會添加相應的父組件中。所有的這些都是.net自動完成的。

  但是,某些情境下,我們需要手寫代碼改變組件所屬的父容器。比如某些組件原來屬於父容器A,但是我們想將這些組件調整到父容器B中,此時一個有趣的問題出現。

以下3個組件原來位於this:

            this.Controls.Add(this.operRateUC);            this.Controls.Add(this.personProductUg);            this.Controls.Add(this.procedingPanel);

想調整這3個組件到adjustPanel組件。如下面的代碼所示:

     private void moveToAdjustPanel()     {          //AdjustablePanel是一個Control類          AdjustablePanel adjustPanel = new AdjustablePanel();                    foreach (Control ultraControl in this.Controls)            {                    if (ultraControl.GetType() == typeof(UltraGrid) ||                         ultraControl.GetType() == typeof(UltraChart) ||                        ultraControl.GetType() == typeof(Panel))                {                    adjustPanel.Controls.Add(ultraControl);                                    }              }     }

  這種批量移動組件到另一個父組件的方式是失敗的。
  adjustPanel每次新添加了一個組件後,this.Controls的組件就會改變,並且未拋出foreach迭代器被修改的異常。這不知道是不是微軟的一個bug。

在bbs.csdn.net上發帖求助,回複,大都認為foreach遍曆會報錯,但是的確編譯器未拋出任何異常。我重新再編譯器重新做了一個簡單的測試,結果,發現foreach遍曆的確不報錯,但是得不到想要的結果。




測試代碼如下,測試的預期是將2個Button組件從this中移動到groupBox1中。但是結果卻是this 中依然有button1,只有button2被移動到了groupBox1中。

奇怪點:

foreach迭代器被修改,為什麼不報錯???
為什麼只有button2移動到groupBox1中了???

        public Form1()        {            InitializeComponent();            moveButtonsToGroupBox();            //controlNames的結果為{groupBox1,button1}            var controlNames = showAllChildControls(this);             //controlNamesInGroup的結果為{button2}            var controlNamesInGroup = showAllChildControls(this.groupBox1);                     }        /// <summary>        /// 移動位於Form上的按鈕到GroupBox中        /// </summary>        private void moveButtonsToGroupBox()        {            foreach(Control c in this.Controls)            {                if (c.GetType() == typeof(Button))                                this.groupBox1.Controls.Add(c);            }        }        /// <summary>        /// 展示c控制項的所有子組件的Name        /// </summary>        /// <param name="c"></param>        /// <returns></returns>        private List<string> showAllChildControls(Control c)        {            if (c == null) return null;            List<string> controlNames = new List<string>();                        foreach(Control chl in c.Controls)            {                controlNames.Add(chl.Name);            }            return controlNames;        }
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.