Beispiel #1
0
 /// ------------------------------------------------------------------------------------
 /// <summary>
 /// Reflects drag drop events to the tab's owning group.
 /// </summary>
 /// ------------------------------------------------------------------------------------
 protected override void OnDragDrop(DragEventArgs e)
 {
     base.OnDragDrop(e);
     OwningTabGroup.InternalDragDrop(e);
 }
Beispiel #2
0
 /// ------------------------------------------------------------------------------------
 /// <summary>
 /// Treat dropping on a result view grid just like dropping on the tab.
 /// </summary>
 /// ------------------------------------------------------------------------------------
 void HandleResultViewDragDrop(object sender, DragEventArgs e)
 {
     OwningTabGroup.InternalDragDrop(e);
 }