示例#1
0
 /// <summary>
 /// Occurs when an object is dragged out of the item's bounds.
 /// </summary>
 /// <param name="e"></param>
 public virtual void OnDragLeave(VCItem sender, EventArgs e)
 {
     if (next != null)
     {
         next.OnDragLeave(sender, e);
     }
 }
示例#2
0
 /// <summary>
 /// Occurs when an object is dragged out of the item's bounds.
 /// </summary>
 /// <param name="e"></param>
 internal void OnDragLeave(EventArgs e)
 {
     if (dragDropHandler != null)
     {
         dragDropHandler.OnDragLeave(this, e);
     }
     if (DragLeave != null)
     {
         DragLeave(this, e);
     }
 }