AutoResizedEventHandler Delegate
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.
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. |