Inheritance: System.EventArgs
Example #1
0
 protected virtual void OnZoom(ZoomEventArgs e)
 {
     if (ZoomEvent != null)
     {
         ZoomEvent(this, e);
     }
 }
Example #2
0
 private void imgRegion_ZoomEvent(object sender, ZoomEventArgs e)
 {
     lblMagnification.Text = String.Format("Magnification: {0}x", e.NewMagnification);
     trackMagnification.Value = e.NewMagnification;
 }
Example #3
0
 protected virtual void OnZoom(ZoomEventArgs e)
 {
     if (ZoomEvent != null)
         ZoomEvent(this, e);
 }