Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

DockManager.CreateVs2005DockStyleVisualizers() Method

In This Article

Creates a helper object that manages dock visualizers for the VS2005 dock style.

Namespace: DevExpress.XtraBars.Docking

Assembly: DevExpress.XtraBars.v24.2.dll

NuGet Package: DevExpress.Win.Navigation

#Declaration

public void CreateVs2005DockStyleVisualizers()

#Remarks

When the DockManager.DockMode property is set to VS2005, dock visualizers (markers) are displayed during a dock operation.

Dock visualizers are managed by a helper object which is created during the first dock operation. When an end-user initiates a dock operation for the first time, some time is required to create visualizers. So a small delay is noticable. To prevent this delay, you can call the CreateVs2005DockStyleVisualizers method to forcibly create visualizers beforehand. For instance, you can call this method on the form’s Load event.

See Also