Пример #1
0
 /// <summary>
 /// Handles the <code>DragSourceDropEvent</code> by invoking
 /// <code>dragDropEnd</code> on listener-a and listener-b.
 /// </summary>
 /// <param name="dsde"> the <code>DragSourceDropEvent</code> </param>
 public virtual void DragDropEnd(DragSourceDropEvent dsde)
 {
     ((DragSourceListener)a).DragDropEnd(dsde);
     ((DragSourceListener)b).DragDropEnd(dsde);
 }
Пример #2
0
 /// <summary>
 /// This method is invoked to signify that the Drag and Drop
 /// operation is complete. The getDropSuccess() method of
 /// the <code>DragSourceDropEvent</code> can be used to
 /// determine the termination state. The getDropAction() method
 /// returns the operation that the drop site selected
 /// to apply to the Drop operation. Once this method is complete, the
 /// current <code>DragSourceContext</code> and
 /// associated resources become invalid.
 /// </summary>
 /// <param name="dsde"> the <code>DragSourceDropEvent</code> </param>
 public virtual void DragDropEnd(DragSourceDropEvent dsde)
 {
 }