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