Hi Guest

MobileUser

1 HomePage 1 Jobs 1 WalkIn 1Articles  

Cat Exam

 :) Latest Topic
TurboGears
Zend
Express
Play
CodeIgniter
Vue
Symfony
Ember
Flask
Web2py
 Laravel
 :) Hot Jobs
 
 :) Latest Articles


  

 


Code to Find Child of Control in WPF
Question Posted on 03 Mar 2020

Home >> Frameworks >> WPF >> Code to Find Child of Control in WPF




Code to Find Child of Control in WPF
Below is the code to find the all child control in parents by using For loop
/// Method to get child control of specified type
/// typeparam name="Ty" Type of child control queried
/// param name="parent" Reference of parent control in which child control resides
/// Returns reference of child control of specified type (T) if found, otherwise it will return null

private static T FindVisualChild< Ty>(DependencyObject parent) where Ty : DependencyObject
{
  for (int x = 0; x < VisualTreeHelper.GetChildrenCount(parent); x++)
  {
    DependencyObject child = VisualTreeHelper.GetChild(parent, x);
    if (child != null && child is Ty)
      return (Ty)child;
    else
     {
      Ty childOfChild = FindVisualChild< Ty>(child);
      if (childOfChild != null)
        return childOfChild;
     }
  }
 return null;
}
0
0



 
 Input Your Comments Or suggestions(If Any)
 Name
 Email(optional)
 Comments


Other Important Questions
Namespace needed to host wpf control on window application
What are the major subsystem of WPF
Name the different layout panel of WPF
difference between custom and user control in WPF
can we unable spell checking in WPF TextBox






 
Top Searches:asp net questions vb net questions sql query uddl questions class javascript Questions sharepoint interview questions and concept silverlight questions and concept wcf questions beans general knowledge ajax questions
PHP | Biztalk | Testing | SAP | HR |