using System.Windows.Forms; namespace Oli.Controls.ConvertFilesExample { public partial class frmTestFileDrop : Form { public frmTestFileDrop() { InitializeComponent(); // Add a converter which enables the user to drop files. dragDropListBox1.DragEventArgsConverters.Add(new FileDragEventArgsConverter()); } } }