gpt4 book ai didi

c# - 如何使用图标呈现数据绑定(bind)的 WinForms DataGridView 列?

转载 作者:行者123 更新时间:2023-11-30 21:30:23 26 4
gpt4 key购买 nike

在我的 C# Windows 窗体应用程序中,我有一个 DataGridView绑定(bind)到 BindingList<Item>列表又用 List<Item> 初始化.

// bind view to controller
myDataGridView.DataBindings.Add("DataSource", myController, "Items");

// bind controller to model
Items = new BindingList<Item>(model.Items);

因此,数据网格的列是根据类 Item 的属性生成的.我为 DataGridView 提供了一个处理程序方法s CellFormatting根据 Item 的某些属性值显示某些单元格值的事件输入:

myDataGridView.CellFormatting += new DataGridViewCellFormattingEventHandler(myontroller.HandleCellFormatting);

我现在还想向网格中的每一行添加两个可能的图标之一,这也取决于 Item 的某些属性的值。 .请注意,现在与项目的任何属性都有直接对应关系,因此我的网格中不能有额外的列来容纳图标。所以我想我必须向已经存在的单元格添加一个图标,或者动态生成一个合适的列。有任何想法吗 ?

最佳答案

在 DataGridView 单元格中的文本旁边显示图像

您需要处理 DataGridViewCellPainting 事件并自行绘制单元格。

示例

此示例展示了如何在 DataGridView 的绑定(bind)列中绘制图像,以便该列显示绑定(bind)数据以及图像。例如,在这里我决定为负数绘制一个红色图标,为零数绘制一个银色图标,为正数绘制一个绿色图标:

enter image description here

为此,定义一些变量以保持对图像的引用。我们将使用此变量来渲染图像,并在我们不再需要时处理图像:

Image zero, negative, positive;

处理表单的 Load 事件和来自文件、资源或存储图像的任何地方的图像并分配给这些变量。设置数据绑定(bind)。为要在其中绘制图标的单元格设置合适的左填充:

private void Form1_Load(object sender, EventArgs e)
{
var list = new[] {
new { C1 = "A", C2 = -2 },
new { C1 = "B", C2 = -1 },
new { C1 = "C", C2 = 0 },
new { C1 = "D", C2 = 1 },
new { C1 = "E", C2 = 2 },
}.ToList();
dataGridView1.DataSource = list;

zero = new Bitmap(16, 16);
using (var g = Graphics.FromImage(zero))
g.Clear(Color.Silver);
negative = new Bitmap(16, 16);
using (var g = Graphics.FromImage(negative))
g.Clear(Color.Red);
positive = new Bitmap(16, 16);
using (var g = Graphics.FromImage(positive))
g.Clear(Color.Green);

//Set padding to have enough room to draw image
dataGridView1.Columns[1].DefaultCellStyle.Padding = new Padding(18, 0, 0, 0);
}

处理 DataGridViewCellPainting 事件并呈现单元格内容和所需列的图像:

private void DataGridView1_CellPainting(object sender, DataGridViewCellPaintingEventArgs e)
{
//We don't need custom paint for row header or column header
if (e.RowIndex < 0 || e.ColumnIndex != 1) return;

//We don't need custom paint for null value
if (e.Value == null || e.Value == DBNull.Value) return;

//Choose image based on value
Image img = zero;
if ((int)e.Value < 0) img = negative;
else if ((int)e.Value > 0) img = positive;

//Paint cell
e.Paint(e.ClipBounds, DataGridViewPaintParts.All);
e.Graphics.DrawImage(img, e.CellBounds.Left + 1, e.CellBounds.Top + 1,
16, e.CellBounds.Height - 3);

//Prevent default paint
e.Handled = true;
}

处理 FormClosing 事件以处理图像:

private void Form1_FormClosing(object sender, FormClosingEventArgs e)
{
//Dispose images
if (zero != null) zero.Dispose();
if (negative != null) negative.Dispose();
if (positive != null) positive.Dispose();
}

关于c# - 如何使用图标呈现数据绑定(bind)的 WinForms DataGridView 列?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54518259/

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