I have a "huge" Control
where ~50% of it is collapsed
. You can switch by a property to hide the visible
part and show the collapsed
one.
Now when the Control
is loaded, I try to find all FooControl
s in the visible
and collapsed
part of the control. The problem is, that only the FooControl
s of the visible
part are found. If I debug
the code, I can see FooControl
s in the parent Control of the collapsed part.
Can you give me a hint how to solve this problem?
I need to change a Property
of FooControl
after it's loaded. I also need to be dynamic, because it comes with a behavior
.