using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace GanttChart { /// /// 甘特图行选中事件参数 /// public class GanttChartRowSelectedEventArgs : EventArgs { /// /// 行 /// public GanttChartViewRow Row { get; private set; } /// /// 初始化 /// /// public GanttChartRowSelectedEventArgs(GanttChartViewRow row) { Row = row; } } }