# Ribbon Quick Access Toolbar | WPF Controls | DevExpress Documentation

## Ribbon Quick Access Toolbar

The **Ribbon Quick Access Toolbar** is a customizable element which is designed to provide end-users with one-click access to the most important and mostly used features.

![CD_RibbonControl1](/WPF/images/cd_ribboncontrol111748.png)

By default, this toolbar is displayed above the [Ribbon Control](/WPF/7954/controls-and-libraries/ribbon-bars-and-menu/ribbon/ribbon-structure/ribbon-control). Its location and visibility can be changed using the [RibbonControl.ToolbarShowMode](/WPF/DevExpress.Xpf.Ribbon.RibbonControl.ToolbarShowMode) and [RibbonControl.RibbonTitleBarVisibility](/WPF/DevExpress.Xpf.Ribbon.RibbonControl.RibbonTitleBarVisibility) properties.

Like [Ribbon page groups](/WPF/7956/controls-and-libraries/ribbon-bars-and-menu/ribbon/ribbon-structure/ribbon-page-group), the Quick Access Toolbar displays elements (buttons, editors, etc) represented by specific [bar items](/WPF/7983/controls-and-libraries/ribbon-bars-and-menu/ribbon/populating-ribbon) and/or [bar item links](/WPF/7983/controls-and-libraries/ribbon-bars-and-menu/ribbon/populating-ribbon). To add elements to the Quick Access Toolbar, add them to the [RibbonControl.ToolbarItems](/WPF/DevExpress.Xpf.Ribbon.RibbonControl.ToolbarItems) collection.

- XAML

<section id="tabpanel_fYCJg99p9S_tabid-xaml" role="tabpanel" data-tab="tabid-xaml">
<pre><code class="lang-xaml">&lt;dxr:RibbonControl DockPanel.Dock=&quot;Top&quot; RibbonStyle=&quot;Office2010&quot;&gt;
    &lt;dxr:RibbonControl.ToolbarItems&gt;
        &lt;dxb:BarButtonItem x:Name=&quot;btnNew&quot; Content=&quot;New&quot; Glyph=&quot;{dx:DXImage Image=New_16x16.png}&quot;/&gt;
        &lt;dxb:BarItemLinkSeparator/&gt;
        &lt;dxb:BarButtonItemLink BarItemName=&quot;btnPaste&quot;/&gt;
        &lt;dxb:BarButtonItemLink BarItemName=&quot;btnCut&quot;/&gt;
        &lt;dxb:BarButtonItemLink BarItemName=&quot;btnCopy&quot;/&gt;
    &lt;/dxr:RibbonControl.ToolbarItems&gt;
    &lt;dxr:RibbonDefaultPageCategory&gt;
        &lt;dxr:RibbonPage Caption=&quot;Home&quot;&gt;
            &lt;dxr:RibbonPageGroup Caption=&quot;Clipboard&quot;&gt;
                &lt;dxb:BarButtonItem x:Name=&quot;btnPaste&quot; Content=&quot;Paste&quot; LargeGlyph=&quot;{dx:DXImage Image=Paste_32x32.png}&quot; Glyph=&quot;{dx:DXImage Image=Paste_16x16.png}&quot;/&gt;
                &lt;dxb:BarButtonItem x:Name=&quot;btnCut&quot; Content=&quot;Cut&quot; Glyph=&quot;{dx:DXImage Image=Cut_16x16.png}&quot; /&gt;
                &lt;dxb:BarButtonItem x:Name=&quot;btnCopy&quot; Content=&quot;Copy&quot; Glyph=&quot;{dx:DXImage Image=Copy_16x16.png}&quot;/&gt;
            &lt;/dxr:RibbonPageGroup&gt;
        &lt;/dxr:RibbonPage&gt;
    &lt;/dxr:RibbonDefaultPageCategory&gt;
&lt;/dxr:RibbonControl&gt;
</code></pre></section>

## Runtime Customization

At runtime, an end-user can add commands to the Quick Access Toolbar via a context menu:

![CD_QAT_AddToQAT_Menu](/WPF/images/cd_qat_addtoqat_menu11754.png)

The [RibbonControl.AllowAddingToToolbar](/WPF/DevExpress.Xpf.Ribbon.RibbonControl.AllowAddingToToolbar) attached property is applicable to [BarItem](/WPF/DevExpress.Xpf.Bars.BarItem) objects and allows you to specify whether a particular command can be added to the Quick Access Toolbar using a context menu. By default, this feature is enabled.

You can also use the context menu, available for the commands displayed in the Quick Access Toolbar, to remove commands from the Toolbar.

## Examples

- [How to add items to the Quick Access Toolbar](/WPF/8185/controls-and-libraries/ribbon-bars-and-menu/ribbon/examples/how-to-add-items-to-the-quick-access-toolbar)