wpf-devexpress-dot-xpf-dot-ribbon-dot-ribboncontrol-edab4d78.md
Gets or sets whether the Application Button is visible. This is a dependency property.
Namespace : DevExpress.Xpf.Ribbon
Assembly : DevExpress.Xpf.Ribbon.v25.2.dll
NuGet Package : DevExpress.Wpf.Ribbon
public bool ShowApplicationButton { get; set; }
Public Property ShowApplicationButton As Boolean
| Type | Description |
|---|---|
| Boolean |
true if the Application Button is visible; otherwise, false.
|
See Application Button to learn more.
The following code snippets (auto-collected from DevExpress Examples) contain references to the ShowApplicationButton 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.
<DockPanel>
<dxr:RibbonControl x:Name="ribbonControl1" DockPanel.Dock="Top" ShowApplicationButton="False">
<dxr:RibbonControl.ToolbarItemLinks>
<DockPanel>
<dxr:RibbonControl x:Name="ribbonControl1" DockPanel.Dock="Top" ShowApplicationButton="False" RibbonStyle="Office2010">
<dxr:RibbonControl.ToolbarItemLinks>
wpf-scheduler-use-entity-framework-to-bind-to-data/CS/DXSample/MainWindow.xaml#L19
RibbonStyle="Office2019"
ShowApplicationButton="False" />
<dxr:RibbonStatusBarControl DockPanel.Dock="Bottom"/>
<DockPanel>
<dxr:RibbonControl x:Name="ribbonControl1" DockPanel.Dock="Top" MinimizationButtonVisibility="Collapsed" RibbonStyle="Office2010" ShowApplicationButton="False">
<dxr:RibbonDefaultPageCategory>
wpf-scheduler-disable-resource-colorization/CS/DXSample/MainWindow.xaml#L20
RibbonStyle="Office2019"
ShowApplicationButton="False">
<dxr:RibbonPageCategory Caption="Appearance">
See Also