Example #1
0
 ///<summary>
 ///Receives a call when a drag-and-drop operation is in progress to provide visual cues based on the location of the mouse while a drag operation is in progress.
 ///</summary>
 ///
 ///<param name="e">A <see cref="T:System.Windows.Forms.GiveFeedbackEventArgs"></see> that provides data for the event. </param>
 protected override void OnGiveFeedback(GiveFeedbackEventArgs e)
 {
     if (this.forwardOnDrag)
     {
         WizardStepDesigner currentWizardStepDesigner = this.GetDesigner();
         if (currentWizardStepDesigner == null)
         {
             return;
         }
         currentWizardStepDesigner.OnGiveFeedbackInternal(e);
     }
     else
     {
         base.OnGiveFeedback(e);
     }
 }