Esempio n. 1
0
 private void dropGridBelow_Drop(object sender, DragEventArgs e)
 {
     ItemDrop?.Invoke(this, new DropEventArgs(this, false, (string)e.Data.GetData(DataFormats.StringFormat)));
 }
 protected virtual void OnItemDrop(BreadcrumbDragEventArgs e)
 {
     ItemDrop?.Invoke(this, e);
 }
Esempio n. 3
0
 public void OnItemDrop(Item item)
 {
     ItemDrop?.Invoke(item);
 }