[RESOLVED] Trying to understand Shadowing Properties
I have created a new usercontrol. My usercontrol contains several other controls like labels, buttons and so on ...
When I set the Font property of the usercontrol I want that font property value to propagate down to the child controls.
Can I do this with the "Shadows" declaration?
Re: Trying to understand Shadowing Properties
no... you would just have a Font property on your user control... which is sounds like you've got.
Now, in the set, you can loop through all child controls and set their font property with the new value...
-tg
Re: Trying to understand Shadowing Properties