gpt4 book ai didi

c# - 添加用户控件

转载 作者:行者123 更新时间:2023-11-30 18:46:44 25 4
gpt4 key购买 nike

我正在寻找将用户控件添加到 datagridview 单元格的技巧,并找到了以下代码。我只是复制粘贴代码,但是当我尝试添加 CustomColumn 时出现错误。

通过这种方式,我尝试将 CustomColumn 列添加到网格。

private void button1_Click(object sender, EventArgs e)
{
CustomColumn cc=new CustomColumn();
dataGridView1.Columns.Add(cc);
dataGridView1.Rows.Add("");
}

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(CustomUserControl);
}
}
protected override void Paint(Graphics graphics, Rectangle clipBounds, Rectangle cellBounds, int rowIndex, DataGridViewElementStates cellState, object value, object formattedValue, string errorText, DataGridViewCellStyle cellStyle, DataGridViewAdvancedBorderStyle advancedBorderStyle, DataGridViewPaintParts paintParts)
{
CustomUserControl ctrl = (CustomUserControl)value;
Bitmap img = new Bitmap(cellBounds.Width, cellBounds.Height);
ctrl.DrawToBitmap(img, new Rectangle(0, 0, ctrl.Width, ctrl.Height));
graphics.DrawImage(img, cellBounds.Location);
}
protected override void OnClick(DataGridViewCellEventArgs e)
{
List<InfoObject> objs = this.DataGridView.DataSource as List<InfoObject>;
if (objs != null)
{
if (e.RowIndex >= 0 && e.RowIndex < objs.Count) {
CustomUserControl ctrl = objs[e.RowIndex].Ctrl;
// Take any action - I will just change the color for now.
ctrl.BackColor = Color.Red;
ctrl.Refresh();
this.DataGridView.InvalidateCell(e.ColumnIndex, e.RowIndex);
}
}
}
}

请告诉我如何使用上面的代码添加自定义列。我创建了一个用户控件,名称为 CustomUserControl 但没有成功。谢谢

最佳答案

发布了一个名为 ColVis 的 DataTables 新插件。 ColVis 将在表格旁边设置一个按钮,激活后将显示表格中的列列表,最终用户可以选择显示或隐藏列。

尝试datatables.net/release-datatables/extras/ColVis/

下载(将提取的文件夹放入 DataTables 分发中的“extras”文件夹中): datatables.net/releases/ColVis-1.0.1.zip

http://yellowpages.sulekha.com

关于c# - 添加用户控件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15733014/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com