AutoResizedEventHandler Delegate

Definition

Represents the method that will handle the AutoResized event raised by HwndSource.

public delegate void AutoResizedEventHandler(System::Object ^ sender, AutoResizedEventArgs ^ e);
public delegate void AutoResizedEventHandler(object sender, AutoResizedEventArgs e);
type AutoResizedEventHandler = delegate of obj * AutoResizedEventArgs -> unit
Public Delegate Sub AutoResizedEventHandler(sender As Object, e As AutoResizedEventArgs)

Parameters

sender
Object

The source of the event.

e
AutoResizedEventArgs

The event data.

Remarks

The AutoResized event is raised when the WPF layout system causes a HwndSource to resize automatically. A typical handler implementation would communicate size changes to the HWND contained within the HwndSource.

Extension Methods

GetMethodInfo(Delegate)

Gets an object that represents the method represented by the specified delegate.

Applies to

See also