using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace JinYuan.ControlLib { public interface IDataGridViewCustomCell { /// /// 绑定行关联的数据 /// /// The object. void SetBindSource(object obj); /// /// 自定义事件传递,用于单元格向行中传递此事件 /// event DataGridViewRowCustomEventHandler RowCustomEvent; /// /// 关联数据源 /// object DataSource { get; } } }