OnClosing() 보호된 메소드

Raises the Closing event.
protected OnClosing ( CancelEventArgs e ) : void
e CancelEventArgs Event arguments
리턴 void
예제 #1
0
파일: Window.cs 프로젝트: gene-l-thomas/Eto
			/// <summary>
			/// Raises the closing event.
			/// </summary>
			public void OnClosing(Window widget, CancelEventArgs e)
			{
				widget.Platform.Invoke(() => widget.OnClosing(e));
			}
예제 #2
0
 /// <summary>
 /// Raises the closing event.
 /// </summary>
 public void OnClosing(Window widget, CancelEventArgs e)
 {
     using (widget.Platform.Context)
         widget.OnClosing(e);
 }
예제 #3
0
 /// <summary>
 /// Raises the closing event.
 /// </summary>
 public void OnClosing(Window widget, CancelEventArgs e)
 {
     widget.Platform.Invoke(() => widget.OnClosing(e));
 }