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

HandleDgvBluRayDiscInfoDragEnter() private method

private HandleDgvBluRayDiscInfoDragEnter ( DragEventArgs e ) : void
e System.Windows.Forms.DragEventArgs
return void
        private void HandleDgvBluRayDiscInfoDragEnter(DragEventArgs e)
        {
            if (e.Data.GetDataPresent(DataFormats.FileDrop))
            {
                e.Effect = DragDropEffects.Copy;
            }
        }
CreateEAC3ToBatchForm