public DropTargetWrapper(Control ctrl)
        {
            BandObjectLib.Logging.Add_DEBUG("Constructor.log", "DropTargetWrapper");

            hwnd = ctrl.Handle;
            PInvoke.RegisterDragDrop(hwnd, this);
        }
예제 #2
0
 public DropTargetWrapper(Control ctrl)
 {
     this.hwnd = ctrl.Handle;
     PInvoke.RegisterDragDrop(this.hwnd, this);
 }