我想在datagridview中添加一个usercontrol,我的usercontrol非常简单:
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,我读了所有内容,但我找不到使用MY usercontrol的方法。
所以,这是我目前的代码:
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:对不起,如果我的英语不完美,我会尽我所能。
谢谢。
时Vinc