BrightIdeasSoftware.ObjectListView.OnDragDrop C# (CSharp) 메소드

OnDragDrop() 보호된 메소드

protected OnDragDrop ( DragEventArgs args ) : void
args DragEventArgs
리턴 void
        protected override void OnDragDrop(DragEventArgs args)
        {
            base.OnDragDrop(args);

            if (this.DropSink != null)
                this.DropSink.Drop(args);
        }
ObjectListView