using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace RealTimeGraphX.EventArguments { /// /// Represents an size changed event arguments. /// /// public class SurfaceSizeChangedEventArgs : EventArgs { /// /// Gets or sets the width. /// public double Width { get; set; } /// /// Gets or sets the height. /// public double Height { get; set; } } }