Ejemplo n.º 1
0
 private void pd_EndPrint(object sender, PrintEventArgs e)
 {
     System.Windows.Forms.Cursor.Current = System.Windows.Forms.Cursors.Default;
     if (this.EndPrint != null)
     {
         EndPrint.BeginInvoke(sender, e, null, null);
     }
 }
Ejemplo n.º 2
0
 protected virtual void OnEndPrint(PrintEvent args)
 {
     EndPrint?.Invoke(this, args);
 }
Ejemplo n.º 3
0
 protected virtual void OnEndPrint(PrintEventArgs e) => EndPrint?.Invoke(this, e);