-
-
Notifications
You must be signed in to change notification settings - Fork 325
Nodify_Events_ResizeEventArgs
miroiu edited this page Dec 23, 2024
·
1 revision
Namespace: Nodify.Events
Assembly: Nodify
Inheritance: Object → EventArgs → RoutedEventArgs → ResizeEventArgs
References: ResizeEventHandler
Provides data for resize related routed events.
public class ResizeEventArgs : RoutedEventArgs Initializes a new instance of the ResizeEventArgs class with the previous and the new Size.
public ResizeEventArgs(Size previousSize, Size newSize); Parameters
previousSize Size: The previous size associated with this event.
newSize Size: The new size associated with this event.
Gets the new size of the object.
public Size NewSize { get; set; } Property Value
Gets the previous size of the object.
public Size PreviousSize { get; set; } Property Value
protected override void InvokeEventHandler(Delegate genericHandler, object genericTarget); Parameters
genericHandler Delegate
genericTarget Object