public void OnGiveFeedback(CellContext sender, System.Windows.Forms.GiveFeedbackEventArgs e)
 {
     foreach (IController controller in m_ControllerList)
     {
         controller.OnGiveFeedback(sender, e);
     }
 }
 void IBranch.OnGiveFeedback(System.Windows.Forms.GiveFeedbackEventArgs args, int row, int column)
 {
 }
Example #3
0
 private void TestControl_GiveFeedback(object sender, System.Windows.Forms.GiveFeedbackEventArgs e)
 {
     System.Diagnostics.Debug.WriteLine("GiveFeedback");
 }
Example #4
0
 public virtual void OnGiveFeedback(CellContext sender, System.Windows.Forms.GiveFeedbackEventArgs e)
 {
 }
Example #5
0
 public virtual void OnGiveFeedback(Glyph g, System.Windows.Forms.GiveFeedbackEventArgs e)
 {
 }
Example #6
0
 public virtual void OnGiveFeedback(System.Windows.Forms.Design.Behavior.Glyph g, System.Windows.Forms.GiveFeedbackEventArgs e)
 {
 }
Example #7
0
 private void obj_GiveFeedback(System.Object sender, System.Windows.Forms.GiveFeedbackEventArgs e)
 {
     this.OnChanged(sender);
 }
Example #8
0
 protected virtual void OnGiveFeedback(System.Windows.Forms.GiveFeedbackEventArgs gfbevent);