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.
Using DockingManager is there any way we can dock the MDI child windows ? I tried doing following :
MyFrameWindowConstructor()
{
this.IsMdiContainer = true;
childWnd = new MyChildWindow();
childWnd.MdiParent= this;
dockingManager1 = new DockingManager();
dockingManager1.HostForm = this;
dockingManager1.PersistState = false;
dockingManager1.BeginInit();
dockingManager1.DockControl(childWnd, this, DockingStyle.Left, 300);
childWnd.Show();
dockingManager1.EndInit();
}
This works but when the program terminates it gives an unhandled exception.
Thanks,
Shridhar.
}