BatchGuy.App.CreateEAC3ToBatchForm.HandleCreateEAC3ToBatchFormDragDrop C# (CSharp) Method

HandleCreateEAC3ToBatchFormDragDrop() private method

private HandleCreateEAC3ToBatchFormDragDrop ( DragEventArgs e ) : void
e System.Windows.Forms.DragEventArgs
return void
        private void HandleCreateEAC3ToBatchFormDragDrop(DragEventArgs e)
        {
            foreach (string file in (Array)e.Data.GetData(DataFormats.FileDrop))
            {
                if (this.IsBatchGuyEac3toSettingsFile(file))
                {
                    this.HandlesLoadToolStripMenuItemClick(file);
                }
            }
        }
CreateEAC3ToBatchForm