Skip to content

Events / ResizeEventArgs

Namespace: Nodify.Events

Assembly: Nodify

Inheritance: ObjectEventArgsRoutedEventArgsResizeEventArgs

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

Size

Gets the previous size of the object.

public Size PreviousSize { get; set; }

Property Value

Size

protected override void InvokeEventHandler(Delegate genericHandler, object genericTarget);

Parameters

genericHandler Delegate

genericTarget Object