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

  1. Drag and drop the control to your form.

  2. Add one or more search path to the controls as follow:
    quickAccessList.SearchPaths.Add( <Folder Path> );

  3. Define file filter:
    quickAccessList.FileFilter = "*.cs";

  4. Execute quickAccessList.UpdateList() to update the contents.

  5. Subscribed to ItemClicked event to define the action when menu item is clicked.

Popular posts from this blog

(AGauge) WinForms Gauge Control - Discontinued

C# DSP Simulation - DSP Lab

WinForms Controls