using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Terminal.Gui { /// /// Event args for draw events /// public class DrawEventArgs : EventArgs{ /// /// Creates a new instance of the class. /// /// Gets the view-relative rectangle describing the currently visible viewport into the . public DrawEventArgs (Rect rect) { Rect = rect; } /// /// Gets the view-relative rectangle describing the currently visible viewport into the . /// public Rect Rect { get; } } }