I'm looking for a way to find all controls on Window by their type,
for example: find all TextBoxes, find all controls implementing specific interface etc.
Thanks
|
feedback
|
|
This should do the trick
then you enumerate over the controls like so
| |||||||||||
feedback
|
|
This is the easiest way:
where control is the root element of the window. | |||||
feedback
|
|
Use the helper classes
| |||
feedback
|
|
And this is how it works upwards
| |||
|
feedback
|
|
Do note that using the VisualTreeHelper does only work on controls that derive from Visual or Visual3D. If you also need to inspect other elements (e.g. TextBlock, FlowDocument etc.), using VisualTreeHelper will throw an exception. Here's an alternative that falls back to the logical tree if necessary: http://www.hardcodet.net/2009/06/finding-elements-in-wpf-tree-both-ways | |||
|
feedback
|
|
To get a list of all childs of a specific type you can use:
| |||
|
feedback
|
|
I found that the line, VisualTreeHelper.GetChildrenCount(depObj);, used in several examples above does not return a non-zero count for GroupBoxes, in particular, where the GroupBox contains a Grid, and the Grid contains children elements. I believe this may be because the GroupBox is not allowed to contain more than one child, and this is stored in its Content property. There is no GroupBox.Children type of property. I am sure I did not do this very efficiently, but I modified the first "FindVisualChildren" example in this chain as follows:
| |||
|
feedback
|