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