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

FlowLayoutControl.MaximizedElementPositionIndicatorStyle Property

Gets or sets the style applied to the maximized element’s drag-and-drop indicator. This is a dependency property.

Namespace: DevExpress.Xpf.LayoutControl

Assembly: DevExpress.Xpf.LayoutControl.v24.2.dll

NuGet Package: DevExpress.Wpf.LayoutControl

#Declaration

public Style MaximizedElementPositionIndicatorStyle { get; set; }

#Property Value

Type Description
Style

A Style object that is applied to the maximized element’s drag-and-drop indicator.

#Remarks

Note

This style is intended for the DevExpress.Xpf.LayoutControl.MaximizedElementPositionIndicator type.

The FlowLayoutControl allows one of its elements to be maximized (see the FlowLayoutControl.MaximizedElement property). If the FlowLayoutControl.AllowMaximizedElementMoving property is set to true, the position of the maximized element relative to the remaining items can be changed via drag-and-drop. The MaximizedElementPositionIndicatorStyle property specifies the style that is applied to the maximized element’s drag-and-drop indicator:

MaximizedElementDragAndDropIndicator

In code, the position of the maximized element can be specified via the FlowLayoutControl.MaximizedElementPosition property.

See Also