wpf-devexpress-dot-xpf-dot-ribbon-dot-ribboncontrol-10bfe604.md
Gets or sets the menu or control that is invoked when clicking on the RibbonControl’s Application Button. This is a dependency property.
Namespace : DevExpress.Xpf.Ribbon
Assembly : DevExpress.Xpf.Ribbon.v25.2.dll
NuGet Package : DevExpress.Wpf.Ribbon
public DependencyObject ApplicationMenu { get; set; }
Public Property ApplicationMenu As DependencyObject
| Type | Description |
|---|---|
| DependencyObject |
An object that is invoked when clicking on the RibbonControl’s Application Button.
|
By default, clicking the Application Button has no effect. You can use the ApplicationMenu property, to provide a menu or control that will be invoked on clicking this button.
The following controls can be assigned to the ApplicationMenu property:
The following code snippets (auto-collected from DevExpress Examples) contain references to the ApplicationMenu property.
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.
wpf-create-a-ribboncontrol/CS/RibbonControl_Ex/MainWindow.xaml#L29
<!--region #AppMenu-->
<dxr:RibbonControl.ApplicationMenu>
<dxr:ApplicationMenu RightPaneWidth="280" ShowRightPane="True">
wpf-diagram-mdi/CS/MainWindow.xaml#L69
RibbonStyle="Office2010">
<dxr:RibbonControl.ApplicationMenu>
<dxr:ApplicationMenu>
See Also