wpf 遍历控件及其值

       /// <summary>
        /// 遍历控件及其值
        /// </summary>
        /// <param name="uiControls">界面控件</param>
       private void SetNotEditable(UIElementCollection uiControls)
        {           
            foreach (UIElement element in uiControls)
            {
                if (element is TextBox)
                {
                    TextBox txtBox = (element as TextBox);                  
                }
                else if (element is Grid)
                {
                    this.SetNotEditable((element as Grid).Children);
                }
            }
       }
原文地址:https://www.cnblogs.com/tianyiwuying/p/4950421.html