Skip to main content
A newer version of this page is available. .

DropDownButtonBase.PopupContent Property

Specifies the popup content. This is a dependency property.

Namespace: DevExpress.Xpf.Core

Assembly: DevExpress.Xpf.Core.v18.2.dll

Declaration

public object PopupContent { get; set; }

Property Value

Type Description
Object

A popup content.

Remarks

See the example below.

<dx:DropDownButton Height="25" Width="175" Content="DropdownButton">
            <dx:DropDownButton.PopupContent>
                <dxe:TrackBarEdit Height="30">
                    <dxe:TrackBarEdit.StyleSettings>
                        <dxe:TrackBarZoomRangeStyleSettings />
                    </dxe:TrackBarEdit.StyleSettings>
                </dxe:TrackBarEdit>
            </dx:DropDownButton.PopupContent>
        </dx:DropDownButton>

dropdownbutton_rangecontrol

See Also