windowsforms-devexpress-dot-xtrabars-dot-docking-dot-dockmanager-b45b92e0.md
Fires after the docking layout has been loaded.
Namespace : DevExpress.XtraBars.Docking
Assembly : DevExpress.XtraBars.v25.2.dll
NuGet Package : DevExpress.Win.Navigation
[DXCategory("Docking")]
public event EventHandler Load
<DXCategory("Docking")>
Public Event Load As EventHandler
The Load event's data class is EventArgs.
The Load event is raised in the cases listed below:
The following code snippet (auto-collected from DevExpress Examples) contains a reference to the Load event.
Note
The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.
winforms-reporting-create-a-custom-script-editor-designer/CS/Program.cs#L22
form.DesignMdiController.AddService(typeof(DevExpress.XtraReports.Design.IScriptEditorService), new ScriptEditorService());
form.DesignDockManager.Load += (s, e) => form.DesignMdiController.ActiveDesignPanel.ExecCommand(DevExpress.XtraReports.UserDesigner.ReportCommand.ShowScriptsTab);
tool.ShowRibbonDesignerDialog();
winforms-reporting-create-a-custom-script-editor-designer/VB/Program.vb#L22
form.DesignMdiController.AddService(GetType(DevExpress.XtraReports.Design.IScriptEditorService), New ScriptEditorService())
AddHandler form.DesignDockManager.Load, Sub(s, e) form.DesignMdiController.ActiveDesignPanel.ExecCommand(DevExpress.XtraReports.UserDesigner.ReportCommand.ShowScriptsTab)
tool.ShowRibbonDesignerDialog()
See Also