C# 遍歷窗體控件順序問題

今天在作C# winform 窗體控件遍歷時遇到控件順序的問題,也就是控件被遍歷的前後問題。實際狀況以下所述。數組

窗體界面以下:this

界面構成是:主界面有一個 Panel (Panel_14),Panel_14上面有13個子 Panel(Panel_1 ~ Panel_13),每一個子 Panel 上有10個 TextBox,爲了便於操做TextBox中的數據須要將每一個子Panel中的TextBox按照順序存儲到一個TextBox二維數組中 TextBoxArray[10, 13],實現代碼以下:spa

foreach(System.Windows.Forms.Control control in this.panel14.Controls)
{
    if (control is System.Windows.Forms.Panel)
    {
        System.Windows.Forms.Panel p = (System.Windows.Forms.Panel)control;
        int i = int.Parse(p.Name.Substring(5)) - 1;
        int j = 0;
        foreach (System.Windows.Forms.Control cn in p.Controls)
        {
            if (cn is System.Windows.Forms.TextBox)
            {
                textBoxArray[i,j++] = (System.Windows.Forms.TextBox)cn;
            }
        }
    }
}

可是在實際調試時發現TextBox並無哦按照預想的那樣從上到下,從左至右一次存入TextBoxArray中,以下圖所示:調試

紅色方框的地方,Text = 「29」 是Panel_2 的最後一個TextBox,可是在遍歷的時候倒是第一個,並且13個Panel也不是從Panel_1 到 Panel_13一次遍歷的,而是第一個遍歷Panel_1,第二個遍歷Panel_13,第三個遍歷Panel_2........,對於強迫症的我來講這是不容許的,並且這也給TextBox的數據操做帶來不便,解決這種問題的方法也有不少種,例如:code

1. 能夠和操做 textBoxArray 的第一個緯度同樣經過控件的 name 來實現,textBoxArray[int.parse(p.name.subString(5)) - 1, int.parse(textBox.name.subString(6)) - 1] = textBox;orm

2. 經過TextBox的 TabIndex 或者 Tag 實現,代碼同1;blog

3. 經過修改經過修改 ...Controls.Add(...);的順序來實現,由於控件在界面中是經過 ......Controls.Add(...);添加的,控件遍歷的順序和控件添加的順序是一致的,先添加的先遍歷,以下圖:string

紅色方框是Panel_14中子Panel添加的順序,全部就有了上面說的先遍歷Panel_1,而後遍歷Panel_13,而後遍歷Panel_2...................form

至此,問題獲得解決。class

相關文章
相關標籤/搜索