2.0 KiB
2.0 KiB
ResizeEventArgs Class
Namespace: Nodify.Events
Assembly: Nodify
Inheritance: Object → EventArgs → RoutedEventArgs → ResizeEventArgs
References: ResizeEventHandler
Provides data for resize related routed events.
public class ResizeEventArgs : RoutedEventArgs
Constructors
ResizeEventArgs(Size, Size)
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.
Properties
NewSize
Gets the new size of the object.
public Size NewSize { get; set; }
Property Value
PreviousSize
Gets the previous size of the object.
public Size PreviousSize { get; set; }
Property Value
Methods
InvokeEventHandler(Delegate, Object)
protected override void InvokeEventHandler(Delegate genericHandler, object genericTarget);
Parameters
genericHandler Delegate
genericTarget Object