.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; }