The Syncfusion native Blazor components library offers 70+ UI and Data Viz web controls that are responsive and lightweight for building modern web apps.
.NET PDF framework is a high-performance and comprehensive library used to create, read, merge, split, secure, edit, view, and review PDF files in C#/VB.NET.
I want to Implement a designer for a complex control (it has several inner panels),the problem with the existing designers is that I cant place controls on my inner panels if this control is placed on a form.
PSPrakash S Syncfusion Team May 9, 2002 01:15 PM UTC
If you just want to add controls to the UserControl, then all you have to do is replace the UserControl's default designer with a ParentControlDesigner. However, if your intention is to add controls onto the constituent controls of the UserControl, then I doubt whether this is possible without an extensively customized designer as the designerhost is aware only of the UserControl and not it's constituents.
(You might want to double-check this on Mircrosoft's Windows Forms forum)
Prakash
ADAdministrator Syncfusion Team May 12, 2002 04:08 AM UTC
> If you just want to add controls to the UserControl, then all you have to do is replace the UserControl's default designer with a ParentControlDesigner. However, if your intention is to add controls onto the constituent controls of the UserControl, then I doubt whether this is possible without an extensively customized designer as the designerhost is aware only of the UserControl and not it's constituents.
>
> (You might want to double-check this on Mircrosoft's Windows Forms forum)
>
> Prakash
>
My intention is to add controls onto the constituent controls !
any clue ?