Window.OnLocationChanged(EventArgs) Method

Definition

Raises the LocationChanged event.

protected:
 virtual void OnLocationChanged(EventArgs ^ e);
protected virtual void OnLocationChanged (EventArgs e);
abstract member OnLocationChanged : EventArgs -> unit
override this.OnLocationChanged : EventArgs -> unit
Protected Overridable Sub OnLocationChanged (e As EventArgs)

Parameters

e
EventArgs

An EventArgs that contains the event data.

Remarks

OnLocationChanged raises the LocationChanged event.

A type that derives from Window may override OnLocationChanged. The overridden method must call OnLocationChanged on the base class if LocationChanged needs to be raised.

Applies to

See also