Because, I can have up to 15 custom controls of diferent types using the
UserControl's value in 40 UserControls...
I could loop for my custom control type, and set the value in each ot
the UserControls , but it's a lot more code, and i want it to be as
readible as possible...
So, I only wonder if the custom control has a 'Framework' way to know
that the host UserControl is loaded...
John Saunders [MVP] a écrit :
>> Hi, I have a custom control which loads data, with some critera from a
>> property of the hosting UserControl.
[quoted text clipped - 11 lines]
> Instead of having the custom control grab a property of the hosting control,
> why not have the hosting control set a property of the custom control?
John Saunders [MVP] - 27 Apr 2007 18:02 GMT
> Because, I can have up to 15 custom controls of diferent types using the
> UserControl's value in 40 UserControls...
Well, I don't have much more to offer, other than the observation that your
design seems to be too tightly-coupled.
Perhaps your custom controls could implement some particular interface. Your
user controls could then recursively search their Controls collection for
controls which implement this interface. You could even move this code into
a common base class for the user controls.

Signature
John Saunders [MVP]