ComponentFactory.Krypton.Toolkit.KryptonSplitContainerDesigner.OnDragEnter C# (CSharp) Method

OnDragEnter() protected method

Raises the DragEnter event.
protected OnDragEnter ( DragEventArgs de ) : void
de System.Windows.Forms.DragEventArgs A DragEventArgs that contains the event data.
return void
        protected override void OnDragEnter(DragEventArgs de)
        {
            // Prevent user dragging a toolbox control onto the control
            de.Effect = DragDropEffects.None;
        }