Drop Direction in WPF Dropdown Button (DropDownButtonAdv)

The DropDown Direction can be changed using the property DropDirection. The DropDirection Enum takes the following values:

  • Left
  • Right
  • BottomLeft
  • BottomRight
  • TopLeft
  • TopRight

The default value is BottomLeft.

The DropDirection property can be set as follows:

To set BottomLeft DropDirection

<sync:DropDownButtonAdv  DropDirection="BottomLeft"/>

To set BottomRight drop direction

<sync:DropDownButtonAdv  DropDirection="BottomRight"/>

To set Right drop direction

<sync:DropDownButtonAdv  DropDirection="Right"/>

To set Left drop direction

<sync:DropDownButtonAdv  DropDirection="Left"/>