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

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM