OnLocationChanged() protected method

Raises the LocationChanged event.
protected OnLocationChanged ( EventArgs e ) : void
e System.EventArgs Event arguments
return void
Ejemplo n.º 1
0
			/// <summary>
			/// Raises the location changed event.
			/// </summary>
			public void OnLocationChanged(Window widget, EventArgs e)
			{
				widget.Platform.Invoke(() => widget.OnLocationChanged(e));
			}
Ejemplo n.º 2
0
 /// <summary>
 /// Raises the location changed event.
 /// </summary>
 public void OnLocationChanged(Window widget, EventArgs e)
 {
     using (widget.Platform.Context)
         widget.OnLocationChanged(e);
 }
Ejemplo n.º 3
0
 /// <summary>
 /// Raises the location changed event.
 /// </summary>
 public void OnLocationChanged(Window widget, EventArgs e)
 {
     widget.Platform.Invoke(() => widget.OnLocationChanged(e));
 }