Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles / Languages / C#

Recent Items Tool Strip Menu Item

4.91/5 (6 votes)
8 Nov 2013CPOL 16.8K   415  
Create menu item that saves recently opened files

Introduction

This class extends the ToolStripMenuItem control to list recent files and store recently opened files in the registry.

Image 1

Using the Code

  • Add the cs file to your project.
  • Add a menuStrip and a RecentToolStripMenuItem to your project

Image 2

  • Add an ItemClick event to set what happens when an item in the list is clicked
  • Add recentToolStripMenuItem.UpdateList(); after InitializeComponent(); in the function Form1()
  • Use recentToolStripMenuItem.AddRecentItem(pathToFile); anytime you save or open a file to add it to the list

You can change the maximum number of items. The default is 5.

C#
recentToolStripMenuItem.MaxItems = 5;

You can change the registry key the recent list is saved in. The default is HKEY_CURRENT_USER\Software\{Application.CompanyName}\{Application.ProductName}\Recent.

C#
recentToolStripMenuItem.Key = Microsoft.Win32.Registry.CurrentUser.CreateSubKey
("whatever\\key\\you\\want");

Company Name and Product Name can be changed in the solution properties. Click on the button [Assembly Information].

Points of Interest

If you use AddRecentItem() for a file that is already in the list, it automatically moves it to the top of the list.

History

  • No updates yet

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)