Skip to main content

Recent Item Control

  • 7 minutes to read

The Recent Item Control component provides various items (pin buttons, labels, separators, etc.) to assist you with efficiently building content for BackstageView Control tabs. A Recent Item Control must be added to the Controls collection of a BackstageView tab’s BackstageViewTabItem.ContentControl object.

RecentControl - Overiview1

Control Regions

The Recent Item Control splits its area into three regions. Each region contains a panel (the RecentStackPanel class object) populated with other Visual Elements.

RecentControl - Main and Content Regions

RecentControl - Main and Default Content Regions

A splitter separates the main region and the content region. End-users can drag this splitter to resize these main and content areas. You can set the initial size ratio through the RecentItemControl.SplitterPosition property or disable the splitter by setting the RecentItemControl.ShowSplitter property to false.

A stack panel in each region has a header that displays a caption (the RecentPanelBase.Caption property) and an image (the RecentPanelBase.Glyph property). To hide panel headers, disable the RecentPanelBase.ShowCaption property.

To populate a panel with Visual Elements, use the panel smart-tag (see below) or add the required elements to the RecentPanelBase.Items collection manually.

RecentControl - Stack Panel SmartTag

Panel Elements

RecentStackPanel objects can host the following elements.

Buttons

RecentItemControl - Button Items

Regular clickable buttons represented by the RecentButtonItem class instances. These elements display text and images (the RecentTextGlyphItemBase.Caption and RecentTextGlyphItemBase.Glyph properties), as well as raise the RecentItemBase.ItemClick event on clicking. To align the image relatively to the text block, use the RecentButtonItem.Orientation property. You can also turn off the RecentButtonItem.AutoSize property to manually size your button as needed.

Tabs

RecentItemControl - TabItems

Objects of the RecentTabItem class that support selected states. When selected, a tab displays the RecentStackPanel object assigned with its RecentTabItem.TabPanel property in the control’s content region. A currently selected tab can be set by using the RecentItemControl.SelectedTab property.

When you add tabs at design time, each tab automatically receives a related recent panel. When you add tabs in code, recent panels must be created manually.

Important

Tab items can be hosted only within the main region’s panel.

Labels

RecentItemControl - Label Items

Labels are instances of the RecentLabelItem class. These items display static content, assigned to their RecentTextGlyphItemBase.Caption and RecentTextGlyphItemBase.Glyph properties. The RecentLabelItem.Style property allows you choose between small, medium and large label styles. Mixing labels of different styles allows you to implement complex blocks with titles, sub-titles and regular text.

If the RecentLabelItem.AllowSelect property is set to DefaultBoolean.True, labels become selectable and start supporting the hovered state. Regardless of this setting, every label raises the RecentItemBase.ItemClick and RecentItemBase.ItemPressed events when clicked.

Pin Items

RecentItemControl - Pin Items

These are advanced labels that are represented by the RecentPinItem class. Pin items display captions, descriptions and icons. At the element’s right edge, there is a pin button that depending on the RecentPinItem.PinButtonVisibility property value can always be visible, always hidden or visible only on hover (default behavior). End-users can click this pin button at runtime, which fires the RecentPinItem.PinButtonCheckedChanged event and toggles the boolean RecentPinItem.PinButtonChecked property. You can use these members to implement your own pin item functionality in case you have a custom scenario.

The default behavior on clicking pin icons emulates that seen in Microsoft Office applications. When a user pins a Pin Item, the item moves up through regular (unpinned) Pin Items and separators. When the item meets any other element (a label, a button, a pinned Pin Item, etc.), it stops. To turn this default behavior off, set the RecentPanelBase.MovePinnedItemsUp property to false.”

RecentItemControl - Hyperlink Items

The RecentHyperlinkItem objects that display their captions as links. They provide the RecentHyperlinkItem.Link property, whose value is used to create a new instance of the System.Diagnostics.Process class that implements the hyperlink’s functionality.

Separators

RecentItemControl - Separator Items

Solid thin horizontal lines that visually delimit neighboring UI elements. Represented by the RecentSeparatorItem class objects.

Content Containers

RecentItemControl - Control Container Item

Content containers are objects of the RecentControlContainerItem type that display any custom control within. Each content container hosts a RecentControlItemControlContainer that provides the Controls collection. This collection stores all controls displayed by this content container. If the RecentControlContainerItem.FillSpace property equals true, the container occupies all available space below itself. Otherwise, the height is specified by the RecentControlContainerItem.ClientHeight property.

Example

The following example demonstrates how to create the BackstageView with embedded RecentItemControl.

BackstageView with Recent Item Control - WinForms Ribbon, DevExpress

using System.Windows.Forms;
using DevExpress.XtraBars.Ribbon;
using DevExpress.XtraEditors;
using DevExpress.XtraEditors.Controls;

namespace DXApplication {
    public partial class Form1 : RibbonForm {
        BackstageViewControl backstageView;
        RecentItemControl recentItemControl;
        public Form1() {
            InitializeComponent();
            InitRecentItemControl();
            InitBackstageView();
            ribbonControl1.ApplicationButtonDropDownControl = backstageView;
        }
        void InitRecentItemControl() {
            recentItemControl = new RecentItemControl() {
                BorderStyle = BorderStyles.NoBorder,
                Dock = DockStyle.Fill,
                Title = "RecentControl Main Title"
            };

            recentItemControl.DefaultContentPanel = new RecentStackPanel();

            SimpleButton simpleButton = new SimpleButton() {
                Dock = DockStyle.Fill,
                Text = "Simple Button"
            };

            // Creates a container for the RecentItemControl and adds it to
            // the RecentItemControl.Controls collection.
            RecentControlItemControlContainer recentControlItemControlContainer = new RecentControlItemControlContainer();
            recentControlItemControlContainer.Controls.Add(simpleButton);
            recentItemControl.Controls.Add(recentControlItemControlContainer);

            // Creates and initializes a container item.
            // Its parent should be RecentControlItemControlContainer.
            RecentControlContainerItem recentControlContainerItem = new RecentControlContainerItem() {
                ClientHeight = 40,
                ControlContainer = recentControlItemControlContainer
            };

            RecentLabelItem recentLabelItem = new RecentLabelItem() { Caption = "RecentControl Label" };

            // Creates the right panel for the tab item.
            RecentStackPanel recentStackPanel1 = new RecentStackPanel() { Caption = "RecentControl Stack Panel" };

            // Adds an item to the right panel.
            recentStackPanel1.Items.Add(recentLabelItem);

            // Creates a tab element of the main panel.
            RecentTabItem recentTabItem1 = new RecentTabItem() {
                Caption = "RecentControl Tab Item",
                TabPanel = recentStackPanel1
            };

            // Create the mandatory main panel.
            RecentStackPanel recentStackPanelMain = new RecentStackPanel() { SelectedItem = recentTabItem1 };

            // Adds elements to the main panel.
            recentStackPanelMain.Items.AddRange(new RecentItemBase[] {
                recentTabItem1,
                recentControlContainerItem
            });
            recentItemControl.MainPanel = recentStackPanelMain;
        }
        void InitBackstageView() {
            BackstageViewTabItem tabItem = new BackstageViewTabItem() { Caption = "Recent Control Demo" };
            tabItem.ContentControl.Controls.Add(recentItemControl);
            backstageView = new BackstageViewControl() { SelectedTab = tabItem };
            backstageView.Items.Add(tabItem);
        }
    }
}