using System; namespace Terminal.Gui { /// /// used by the event. /// public class ListViewRowEventArgs : EventArgs { /// /// The current row being rendered. /// public int Row { get; } /// /// The used by current row or /// null to maintain the current attribute. /// public Attribute? RowAttribute { get; set; } /// /// Initializes with the current row. /// /// public ListViewRowEventArgs (int row) { Row = row; } } }