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.
33 lines
814 B
33 lines
814 B
10 months ago
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Linq;
|
||
|
using System.Text;
|
||
|
|
||
|
namespace GanttChart
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 甘特图属性改变事件参数
|
||
|
/// </summary>
|
||
|
public class GanttChartPropertyChangeEventArgs : EventArgs
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 初始化
|
||
|
/// </summary>
|
||
|
/// <param name="name"></param>
|
||
|
/// <param name="value"></param>
|
||
|
public GanttChartPropertyChangeEventArgs(string name, object value)
|
||
|
{
|
||
|
PropertyName = name;
|
||
|
PropertyValue = value;
|
||
|
}
|
||
|
/// <summary>
|
||
|
/// 属性名
|
||
|
/// </summary>
|
||
|
public string PropertyName { get; set; }
|
||
|
/// <summary>
|
||
|
/// 属性值
|
||
|
/// </summary>
|
||
|
public object PropertyValue { get; set; }
|
||
|
}
|
||
|
}
|