我想在 datagridview 中添加一个用户控件,我的用户控件非常简单:
public partial class UpDownControl : UserControl
{
public event EventHandler UpClick;
public event EventHandler DownClick;
public UpDownControl(string id)
{
InitializeComponent();
this.Tag = id;
}
void BDownClick(object sender, EventArgs e)
{
if(DownClick!=null)
DownClick(this,e);
}
void BUpClick(object sender, EventArgs e)
{
if(UpClick!=null)
UpClick(this,e);
}
}
我想做的就是在datagridview的第一列中添加这个控件,我试图自己找出一个解决方案,但我没有找到一个解决方案。不要告诉我去看这个链接, http: //msdn.microsoft.com/en-us/library/7tas5c80.aspx,我都读了,但我没有找到用我的用户控件来做的方法。
所以,这是我当前的代码:
for(int i=0;i<lposte.Count;++i)
{
UpDownControl updown = new UpDownControl("test1");
updown.DownClick += new EventHandler(testvincdown);
updown.UpClick += new EventHandler(testvincup);
rang = 1;
CustomColumn col = new CustomColumn();
CustomeCell cell = new CustomeCell();
col.CellTemplate = cell;
dataGridView1.Columns.Add(col);
dataGridView1.Rows.add(updown);
}
public class CustomColumn : DataGridViewColumn
{
public CustomColumn() : base(new CustomeCell()) { }
public override DataGridViewCell CellTemplate
{
get
{
return base.CellTemplate;
}
set
{
// Ensure that the cell used for the template is a CalendarCell.
if (value != null &&
!value.GetType().IsAssignableFrom(typeof(CustomeCell)))
{
throw new InvalidCastException("It should be a custom Cell");
}
base.CellTemplate = value;
}
}
}
public class CustomeCell : DataGridViewCell
{
public CustomeCell() : base() { }
public override Type ValueType
{
get
{
return typeof(UpDownControl);
}
}
}
任何帮助将不胜感激。PS:对不起,如果我的英语不完美,我已经尽力了。
谢谢你。
文克