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.
Basically I have several docked windows. However I have to disable autohiding from the dock manager which turns it on or off for all of the controls it manages..
ADAdministrator Syncfusion Team March 12, 2004 05:54 PM UTC
Hi,
You could autohide any desired docking control by using code like :
DockingManager.SetAutoHideMode(ctrl, true);
If you wish to selectively enable/disable the pushpin (autohide button) on the docking window then you could use code like :
DockingManager.SetAutoHideButtonVisibility(ctrl, true/false);
Please let me know if you need any other information. Thanks for choosing Syncfusion products.
Regards,
Guru Patwal
Syncfusion, Inc.
ADAdministrator Syncfusion Team March 12, 2004 05:58 PM UTC
Excellent, thanks for the help. I guess it has to be done programatically, not from the designer. No problem.