OnLocationChanged() 보호된 메소드

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