Skip to main content

RibbonMiniToolbar.Show(Point) Method

Displays the toolbar at the specified position.

Namespace: DevExpress.XtraBars.Ribbon

Assembly: DevExpress.XtraBars.v23.2.dll

NuGet Package: DevExpress.Win.Navigation

Declaration

public void Show(
    Point pt
)

Parameters

Name Type Description
pt Point

A Point object that is the position where the toolbar will be displayed.

Remarks

The Show method displays the toolbar at the specified position. The toolbar is automatically hidden when the distance between the mouse and the toolbar becomes larger than the RibbonMiniToolbarOpacityOptions.TransparencyDistance value. To close the toolbar manually, use the RibbonMiniToolbar.Hide method.

You can display a toolbar and a popup menu simultaneously. First, assign a popup menu to a toolbar via the RibbonMiniToolbar.PopupMenu property, or assign a toolbar to a popup menu via the PopupMenu.RibbonToolbar property. Then, call the RibbonMiniToolbar.Show or the PopupMenu.ShowPopup method.

See Also