As I hide or leave visible dictionary by code
Posted: Thu Jan 03, 2008 3:36 pm
1 .- As I hide or leave visible dictionary by code
2 .- Do not allow hide the dictionary
Thanks
2 .- Do not allow hide the dictionary
Thanks
Reporting tool and data analytics tools for creating reports and dashboards in ASP.NET, ASP.NET MVC, .NET Core, Blazor, Angular, PHP, Python, WPF, JavaScript, and Java applications.
https://forum.stimulsoft.com/
Code: Select all
Stimulsoft.Report.Design.Panels.StiDictionaryPanelService dict = Stimulsoft.Report.Design.Panels.StiDictionaryPanelService.GetService(stiDesignerControl1);
//Load Dictionary Panel if it was Closed
dict.Init(stiDesignerControl1);
//Listen for Closing Event
dict.DockingControl.Closing += new CancelEventHandler(DockingControl_Closing);
Code: Select all
void DockingControl_Closing(object sender, CancelEventArgs e)
{
//Cancel Dictionary Panel from Closing
e.Cancel = true;
}