Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Recent Files List in c# Windows forms .net 4

Tags:

c#

winforms

Just wondering if somebody has implemented a Recent Files list and how they have approached. Looking for ideas.

Was thinking of a collection and saving as xml file somewhere(Users....) and when a new file is added check if exists and if does remove and re-add so that you always have the latest 20 files for example.

Any suggestions?

like image 218
user9969 Avatar asked Dec 13 '11 06:12

user9969


1 Answers

The feature is called MRU (Most Recently Used). You can find a nice implementation on http://www.codeproject.com/KB/cs/mrutoolstripmenu.aspx

like image 117
Prafulla Avatar answered Sep 28 '22 10:09

Prafulla