WinForms Quick Access List
QuickAccessList automatic generate drop down menu from files in a folder.
Typical implementation is to generate drop down menu for documentation or example associated with the application.
Example below shows implementation of QuickAccessList to display all C# source file in the source folder.
Source code and NuGet package available at WinForms Controls
How to Use
- Drag and drop the control to your form.
- Add one or more search path to the controls as follow:
quickAccessList.SearchPaths.Add( <Folder Path> ); - Define file filter:
quickAccessList.FileFilter = "*.cs"; - Execute quickAccessList.UpdateList() to update the contents.
- Subscribed to ItemClicked event to define the action when menu item is clicked.