user310291
user310291

Reputation: 38180

Winform Composite Control Project?

Is it possible to have a single project which allow to include a custom custom control within another custom control ?

Update: of course I'm not asking about how to put a custom control on a winform!!! But if I can create put a CUSTOM user CONTROL inside ANOTHER CUSTOM user CONTROL within the SAME PROJECT.

Upvotes: 0

Views: 441

Answers (1)

Mario
Mario

Reputation: 36487

Sure, you're able to do this. In fact you're able to put a custom control inside another custom control the same way you'd do it on a form (it's essentially the same while editing). You might as well base your custom control off another class (or custom control), but not all will support the built in gui editor (so you might just see an error message but the code will still work).

Upvotes: 1

Related Questions