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

RibbonMiniToolbar.Show(Point) Method

Displays the toolbar at the specified position.

Namespace: DevExpress.XtraBars.Ribbon

Assembly: DevExpress.XtraBars.v24.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