Ejemplo n.º 1
0
 /// <summary>
 /// Raises the print page event.
 /// </summary>
 public void OnPrintPage(PrintDocument widget, PrintPageEventArgs e)
 {
     widget.Platform.Invoke(() => widget.OnPrintPage(e));
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Raises the print page event.
 /// </summary>
 public void OnPrintPage(PrintDocument widget, PrintPageEventArgs e)
 {
     using (widget.Platform.Context)
         widget.OnPrintPage(e);
 }
Ejemplo n.º 3
0
			/// <summary>
			/// Raises the print page event.
			/// </summary>
			public void OnPrintPage(PrintDocument widget, PrintPageEventArgs e)
			{
				widget.Platform.Invoke(() => widget.OnPrintPage(e));
			}