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