OnLocationChanged() protected method

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