BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
public class MyGridDataBoundGrid : GridDataBoundGrid { public event DragEventHandler MyDragDrop; protected override void OnDragDrop(DragEventArgs drgevent) { // TODO: Add MyGridDataBoundGrid.OnDragDrop implementation //base.OnDragDrop (drgevent); if(this.MyDragDrop != null) this.MyDragDrop(this, drgevent); } }If you are programmoing in VB, you might be able to avoid this extra by trying RaiseEvent to see if that will work in your override. (I did not try to do it...)
>public class MyGridDataBoundGrid : GridDataBoundGrid >{ > public event DragEventHandler MyDragDrop; > > protected override void OnDragDrop(DragEventArgs drgevent) > { > // TODO: Add MyGridDataBoundGrid.OnDragDrop implementation > //base.OnDragDrop (drgevent); > if(this.MyDragDrop != null) > this.MyDragDrop(this, drgevent); > } >} >> >If you are programmoing in VB, you might be able to avoid this extra by trying RaiseEvent to see if that will work in your override. (I did not try to do it...)