Skip to content

RecentItems

harborsiem edited this page Apr 29, 2024 · 4 revisions

RecentItems

Windows Ribbon for WinForms library now supports working with recent items in the application menu. The result of this post is a yet another sample, “16-RecentItems”, found on the project site.

RecentItems

What are recent items? Recent items are items in a list which appears in the application menu. They don’t have to be file names and they doesn’t have to be recent, although it is recommended.

Every item has 3 properties:

  • Label – Item name, usually file name without path

  • LabelDescription – Item tooltip, usually full filename path

  • Pinned – Boolean that indicates whether the recent item should not be removed from the list

More details can be found at Recent Items on MSDN.

Using RecentItems – Ribbon Markup Commands section:

<Application.Commands>
 …
 <Command Name=“cmdRecentItems“ Id=“1005“ LabelTitle=“Recent Items“ />
</Application.Commands>

Views section:

<Application.Views>
 <Ribbon>
   <Ribbon.ApplicationMenu>
     <ApplicationMenu CommandName=“cmdApplicationMenu“>
       <ApplicationMenu.RecentItems>
         <RecentItems CommandName=“cmdRecentItems“ EnablePinning=“true“ MaxCount=“7“ />
       </ApplicationMenu.RecentItems>
       …
     </ApplicationMenu>
   </Ribbon.ApplicationMenu>
 </Ribbon>
</Application.Views>

Things to note:

  • The “Recent Items” label can be changed to whatever you need (e.g. “Days of the week”).
  • Setting EnablePinning attribute to false will hide the pins from the application menu.
  • MaxCount attribute specify how many items to display on the application menu.

Using RecentItems – Code Behind Initialization:

private Ribbon _ribbon;
private RibbonRecentItems _ribbonRecentItems;

List<RecentItemsPropertySet> _recentItems;

public Form1()
{
    InitializeComponent();

    _ribbon = new Ribbon();
    _ribbonRecentItems = new RibbonRecentItems(_ribbon, (uint)RibbonMarkupCommands.cmdRecentItems);

    _ribbonRecentItems.ExecuteEvent += new EventHandler<ExecuteEventArgs>(_recentItems_ExecuteEvent);
}

private void Form1_Load(object sender, EventArgs e)
{
    InitRecentItems();
}

private void InitRecentItems()
{
    // prepare list of recent items
    _recentItems = new List<RecentItemsPropertySet>();
    _recentItems.Add(new RecentItemsPropertySet()
                     {
                         Label =Recent item 1,
                         LabelDescription = “Recent item 1 description”,
                         Pinned = true
                     });
    _recentItems.Add(new RecentItemsPropertySet()
                     {
                         Label =Recent item 2,
                         LabelDescription = “Recent item 2 description”,
                         Pinned = false
                     });

    _ribbonRecentItems.RecentItems = _recentItems;
}

RibbonRecentItems is the helper class for working with the recent items feature. It has a property named RecentItems of type IList. This property contains the list of the recent items. Note that it is the user responsibility for providing this list and update it when needed (add / remove items, change pinned state).

Responding to a click on an item:

void _recentItems_ExecuteEvent(object sender, ExecuteEventArgs e)
{
    RecentItemsEventArgs args = RecentItemsEventArgs.Create(sender, e);
    if (args.RecentItems != null)
    {
        for (int i = 0; i < args.RecentItems.Count; ++i) {
            string label = args.RecentItems[i].Label;
            string labelDescription = args.RecentItems[i].LabelDescription;
            bool pinned = args.RecentItems[i].Pinned;
            
            // update pinned value
            _recentItems[i].Pinned = pinned;
        }
    }
    if (args.SelectedItem != null)
    {
        SelectedItem<RecentItemsPropertySet> selected = args.SelectedItem;
        int selectedItem = selected.SelectedItemIndex;
        string label = args.SelectedItem.PropertySet.Label;
        string labelDescription = args.SelectedItem.PropertySet.LabelDescription;
        bool pinned = args.SelectedItem.PropertySet.Pinned;
    }
    int maxCount = RecentItems.MaxCount;
}

Older code:

void _recentItems_ExecuteEvent(object sender, ExecuteEventArgs e)
{
    if (key.PropertyKey == RibbonProperties.RecentItems)
    {
        // go over recent items
        object[] objectArray = (object[])e.CurrentValue.PropVariant.Value;
        for (int i = 0; i < objectArray.Length; ++i)
        {
            IUISimplePropertySet propertySet = objectArray[i] as IUISimplePropertySet;

            if (propertySet != null)
            {
                PropVariant propLabel;
                propertySet.GetValue(ref RibbonProperties.Label, 
                                     out propLabel);
                string label = (string)propLabel.Value;

                PropVariant propLabelDescription;
                propertySet.GetValue(ref RibbonProperties.LabelDescription, 
                                     out propLabelDescription);
                string labelDescription = (string)propLabelDescription.Value;

                PropVariant propPinned;
                propertySet.GetValue(ref RibbonProperties.Pinned, 
                                     out propPinned);
                bool pinned = (bool)propPinned.Value;

                // update pinned value
                _recentItems[i].Pinned = pinned;
            }
        }
    }
    else if (key.PropertyKey == RibbonProperties.SelectedItem)
    {
        // get selected item index
        uint selectedItem = (uint)e.CurrentValue.PropVariant.Value;

        // get selected item label
        PropVariant propLabel;
        e.CommandExecutionProperties.GetValue(ref RibbonProperties.Label, 
                                            out propLabel);
        string label = (string)propLabel.Value;

        // get selected item label description
        PropVariant propLabelDescription;
        e.CommandExecutionProperties.GetValue(ref RibbonProperties.LabelDescription, 
                                            out propLabelDescription);
        string labelDescription = (string)propLabelDescription.Value;

        // get selected item pinned value
        PropVariant propPinned;
        e.CommandExecutionProperties.GetValue(ref RibbonProperties.Pinned, 
                                            out propPinned);
        bool pinned = (bool)propPinned.Value;
    }
}

I know, some explanations are in order. The ExecuteEvent event is called on two occasions:

  1. When the user clicks on one of the items.
  2. When the user changes the pinned status of several items and then closes the menu (either by selecting one of the items or by clicking outside the menu).

When the user clicks on an item, the e.CurrentValue argument contains the index of the selected item and e.CommandExecutionProperties argument contains the properties of the selected item. The above code shows how to extract them.

When the user changes the pinned status of several items, the e.CurrentValue argument contains the new status of the items. It is the user responsibility to update the items in its own list. otherwise the user’s change won’t appear the next time he opens the menu.

Table of contents

Clone this wiki locally