BatchGuy.App.CreateX264BatchFileForm.HandlesCreateX264BatchFileFormDragDrop C# (CSharp) Méthode

HandlesCreateX264BatchFileFormDragDrop() private méthode

private HandlesCreateX264BatchFileFormDragDrop ( DragEventArgs e ) : void
e System.Windows.Forms.DragEventArgs
Résultat void
        private void HandlesCreateX264BatchFileFormDragDrop(DragEventArgs e)
        {
            foreach (string file in (Array)e.Data.GetData(DataFormats.FileDrop))
            {
                if (this.IsBatchGuyEac3toSettingsFile(file))
                {
                    this.HandlesLoadToolStripMenuItemClick(file);
                }
            }
        }
CreateX264BatchFileForm