Left Quick Access Taskbar <taskbar>

The left quick access taskbar is located at the upper-left corner of the main window in the application, designed to host frequently used functional controls. It is configured using the <taskbar>…</taskbar> tags. Currently, the left taskbar only supports button controls. To add buttons, simply configure corresponding control tags between <taskbar>…</taskbar>.

The configuration tags <taskbar>…</taskbar> should be placed between <ribbons>…</ribbons>, as shown below.


<ribbons>
    <taskBar id="main" index="0">
        <button checkState="false" customProperty="" description="" helpURL="Features/DataProcessing/DataManagement/SaveWorkspace.htm" 
					id="WorkspaceSaveAs" image="../resources/DataView/Icon/Toolbar/Save.svg" index="0" label="Save" 
					onAction="CtrlActionWorkspaceSave" screenTip="Save the workspace.[Ctrl+S]" screenTipImage="" 
					shortcutKey="[Ctrl]+[S]" visible="true"/>
        <button checkState="false" customProperty="" description="" helpURL="" id="OpenStartUpPath" 
					image="../resources/DataView/Icon/Toolbar/StartUpPath.svg" index="8" label="Open Folder in Explorer" 
					onAction="CtrlActionOpenStartUpPath" screenTip="Quickly open the folder where the application is saved.[F12]" 
					screenTipImage="" shortcutKey="[F12]" visible="true"/>
        ......
    </taskBar>
</ribbons>
      
  • id: Unique identifier. TaskBars with the same ID in different config files will be merged for display;
  • index: Index number controlling the loading order of taskBar controls.

For button control configuration, see: Configuring the Button <button>.