Visual Basic (Declaration) | |
---|---|
Public Property QuickAccessToolBar As UXRibbonQuickAccessToolBar |
Visual Basic (Usage) | ![]() |
---|---|
Dim instance As UXRibbonBar Dim value As UXRibbonQuickAccessToolBar instance.QuickAccessToolBar = value value = instance.QuickAccessToolBar |
C# | |
---|---|
public UXRibbonQuickAccessToolBar QuickAccessToolBar {get; set;} |
Delphi | |
---|---|
public read-write property QuickAccessToolBar: UXRibbonQuickAccessToolBar; |
JScript | |
---|---|
public function get,set QuickAccessToolBar : UXRibbonQuickAccessToolBar |
Managed Extensions for C++ | |
---|---|
public: __property UXRibbonQuickAccessToolBar* get_QuickAccessToolBar(); public: __property void set_QuickAccessToolBar( UXRibbonQuickAccessToolBar* value ); |
C++/CLI | |
---|---|
public: property UXRibbonQuickAccessToolBar^ QuickAccessToolBar { UXRibbonQuickAccessToolBar^ get(); void set ( UXRibbonQuickAccessToolBar^ value); } |
UXRibbonQuickAccessToolbar is a ribbon-friendly control that provides quick access to frequently accessed commands such as New, Open, Save and Print. You can hide the commands initially by setting the Visibility property to Collapsed. At runtime, users can show the hidden commands through the dropdown menu in the quick access toolbar.
By default, the position of UXRibbonQuickAccessToolbar is set to the top of UXRibbonBar. If you prefer, you can set the position to the bottom by setting the ToolBarPosition property to Bottom.
UXRibbonQuickAccessToolbar derives from UXToolbar which is an advanced, rich-featured toolbar control with elegant built-in styles and built-in support for various button types such as described below.
-
Button
Represents a standard command button.
-
DropdownButton
Represents a button that displays dropdown menu when clicked, which can contain a collection of menu items and nested menu items similar to UXContextMenu.
-
SplitButton
Represents a combination of command button and a dropdown menu. This type of button typically provides users with a default command that executed when the command part of the button is clicked, while at the same time allowing users to choose alternative commands through the dropdown arrow. Similar to the DropdownButton, you can also define a collection of menu items and nested menu items as in UXContextMenu.
-
Custom
Represents a custom button that can be used to contain any UIElement or controls. With this type, the default layout properties such as margin and padding as well as the UI behaviors would be disabled. Consequently, this type is ideal to host custom controls such as text box, combo box, date picker and others.
The following code shows how to add UXRibbonQuickAccessToolbar to the ribbon control with several buttons using different button type.
XAML | ![]() |
---|---|
<Intersoft:UXRibbonBar.QuickAccessToolBar> <Intersoft:UXRibbonQuickAccessToolBar> <Intersoft:UXRibbonToolBarButton DisplayMode="Image" Content="New" Icon="/assets/icons/new.png" /> <Intersoft:UXRibbonToolBarButton DisplayMode="Image" Content="Open" Icon="/assets/icons/openfolder.png" /> <Intersoft:UXRibbonToolBarButton DisplayMode="Image" Content="Save" Icon="/assets/icons/save.png" /> <Intersoft:UXSeparator /> <Intersoft:UXRibbonToolBarButton Visibility="Collapsed" DisplayMode="Image" Content="Meeting" Icon="/assets/icons/meeting.png" IsToggleButton="True" /> <Intersoft:UXRibbonToolBarButton DisplayMode="Image" Content="More" Icon="/assets/icons/more.png" /> <Intersoft:UXRibbonToolBarButton ButtonType="DropdownButton" DisplayMode="Image" Content="Clean Up" Icon="/assets/icons/clean_up.png"> <Intersoft:UXRibbonMenuItem Header="Clean Up Conversation" /> <Intersoft:UXRibbonMenuItem Header="Clean Up Folder" /> <Intersoft:UXRibbonMenuItem Header="Clean Up Folder & Subfolders" /> </Intersoft:UXRibbonToolBarButton> <Intersoft:UXRibbonToolBarButton ButtonType="SplitButton" DisplayMode="Image" Content="Find" Icon="/assets/icons/find.png"> <Intersoft:UXRibbonMenuItem Header="Find" Icon="/assets/icons/find.png" /> <Intersoft:UXRibbonMenuItem Header="Advanced Find..." Icon="/assets/icons/find.png" /> <Intersoft:UXRibbonMenuItem Header="Go To..." /> </Intersoft:UXRibbonToolBarButton> </Intersoft:UXRibbonQuickAccessToolBar> </Intersoft:UXRibbonBar.QuickAccessToolBar> |
The result looks like the following figure.
Using Commands in Quick Access Toolbar
The following example shows how to assign a command to a UXRibbonToolBarButton which will be executed when the item is pressed.
XAML | ![]() |
---|---|
<Intersoft:UXRibbonToolBarButton Content="Add new task" Command="{Binding AddNewTaskCommand}" /> |
Target Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows Vista, Windows Server 2008 family