You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
601 B
27 lines
601 B
10 months ago
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Linq;
|
||
|
using System.Text;
|
||
|
|
||
|
namespace GanttChart
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 甘特图行选中事件参数
|
||
|
/// </summary>
|
||
|
public class GanttChartRowSelectedEventArgs : EventArgs
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 行
|
||
|
/// </summary>
|
||
|
public GanttChartViewRow Row { get; private set; }
|
||
|
/// <summary>
|
||
|
/// 初始化
|
||
|
/// </summary>
|
||
|
/// <param name="row"></param>
|
||
|
public GanttChartRowSelectedEventArgs(GanttChartViewRow row)
|
||
|
{
|
||
|
Row = row;
|
||
|
}
|
||
|
}
|
||
|
}
|