예제 #1
0
파일: PrintDocument.cs 프로젝트: mhusen/Eto
		/// <summary>
		/// Raises the <see cref="PrintPage"/> event.
		/// </summary>
		/// <param name="e">Event arguments</param>
		protected virtual void OnPrintPage(PrintPageEventArgs e)
		{
			Properties.TriggerEvent(PrintPageEvent, this, e);
		}
예제 #2
0
파일: PrintDocument.cs 프로젝트: mhusen/Eto
			/// <summary>
			/// Raises the print page event.
			/// </summary>
			public void OnPrintPage(PrintDocument widget, PrintPageEventArgs e)
			{
				widget.Platform.Invoke(() => widget.OnPrintPage(e));
			}
예제 #3
0
파일: PrintDocument.cs 프로젝트: yaram/Eto
 /// <summary>
 /// Raises the <see cref="PrintPage"/> event.
 /// </summary>
 /// <param name="e">Event arguments</param>
 protected virtual void OnPrintPage(PrintPageEventArgs e)
 {
     Properties.TriggerEvent(PrintPageEvent, this, e);
 }
예제 #4
0
		public virtual void OnPrintPage (PrintPageEventArgs e)
		{
			if (_PrintPage != null)
				_PrintPage (this, e);
		}
예제 #5
0
파일: PrintDocument.cs 프로젝트: yaram/Eto
 /// <summary>
 /// Raises the print page event.
 /// </summary>
 public void OnPrintPage(PrintDocument widget, PrintPageEventArgs e)
 {
     widget.Platform.Invoke(() => widget.OnPrintPage(e));
 }