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

RibbonMiniToolbar.Show(Point) Method

Displays the toolbar at the specified position.

Namespace: DevExpress.XtraBars.Ribbon

Assembly: DevExpress.XtraBars.v19.2.dll

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.

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the Show(Point) method.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also