Skip to main content

DockLayoutManager.RedrawContentWhenResizing Property

Gets or sets whether the current DockLayoutManager‘s content should be dynamically redrawn upon resizing. This is a dependency property.

Namespace: DevExpress.Xpf.Docking

Assembly: DevExpress.Xpf.Docking.v23.2.dll

NuGet Package: DevExpress.Wpf.Docking

Declaration

public bool RedrawContentWhenResizing { get; set; }

Property Value

Type Description
Boolean

true if the current DockLayoutManager‘s content should be dynamically redrawn upon resizing; otherwise, false. Default is true.

Remarks

When a DockLayoutManager‘s elements (LayoutPanels, DocumentGroups etc) or the parent window is resized, you can specify whether their content is redrawn on the fly, or after resizing is complete. Setting the RedrawContentWhenResizing property to false enables the shadow-resizing mode (see the figure below):

DockLayoutManager - Shadow Resizing

See Also