3

我正在尝试使用 c# 在 datagridview 中绘制类似图形的心率。

我有一个 10 列的数据网格视图。第一列和最后两列用于数据。我需要将图表绘制到第二列和第八列之间的 6 个中间列的单元格中。

通过使用单元格的右、左、上和下值,我设法使用 celldisplayrectangle 将图形绘制到单个单元格中。Drawcurve 方法和使用单元格内的点有效。但现在我不知道如何使用多个单元格来做到这一点。

4

2 回答 2

5

所以@ozz。我付出了一些努力,创建了一个示例 WindowsForms 应用程序,然后手动添加了三行。

您必须覆盖 DataGridView 函数

private void dataGridView1_CellPainting(object sender, DataGridViewCellPaintingEventArgs e)
{
   // Your custom graphics goes here
}

我在其中添加了一些自定义绘画,当您填充 DataGridView 时,它会调用此 _CellPainting 方法,并且所有绘画都开始到行结束。您可以指定可以绘制哪一行或哪个单元格。

下面是自定义绘画的完整功能。

private void dataGridView1_CellPainting(object sender, DataGridViewCellPaintingEventArgs e)
    {
        try 
        {
            if (this.dataGridView1.Columns["image"].Index == e.ColumnIndex && e.RowIndex >= 0)
            {
                Rectangle newRect = new Rectangle(e.CellBounds.X + 1,
                    e.CellBounds.Y + 1, e.CellBounds.Width - 4,
                    e.CellBounds.Height - 4);

                using (
                    Brush gridBrush = new SolidBrush(this.dataGridView1.GridColor),
                    backColorBrush = new SolidBrush(e.CellStyle.BackColor))
                {
                    using (Pen gridLinePen = new Pen(gridBrush))
                    {
                        // Erase the cell.
                        e.Graphics.FillRectangle(backColorBrush, e.CellBounds);

                        // Draw the grid lines (only the right and bottom lines; 
                        // DataGridView takes care of the others).
                        e.Graphics.DrawLine(gridLinePen, e.CellBounds.Left,
                            e.CellBounds.Bottom - 1, e.CellBounds.Right - 1,
                            e.CellBounds.Bottom - 1);
                        e.Graphics.DrawLine(gridLinePen, e.CellBounds.Right - 1,
                            e.CellBounds.Top, e.CellBounds.Right - 1,
                            e.CellBounds.Bottom);

                        // Draw the inset highlight box.
                        e.Graphics.DrawRectangle(Pens.Blue, newRect);
                        e.Graphics.DrawEllipse(new Pen(Color.Red), newRect);

                        // Draw the text content of the cell, ignoring alignment. 
                        if (e.Value != null)
                        {
                            e.Graphics.DrawString((String)e.Value, e.CellStyle.Font,
                                Brushes.Crimson, e.CellBounds.X + 2,
                                e.CellBounds.Y + 2, StringFormat.GenericDefault);
                        }
                        e.Handled = true;
                    }
                }
            }
        }
        catch (Exception ex)
        {
            MessageBox.Show(ex.Message);
        }
    }

这是填充 DatGridView 的按钮背后的功能

private void cmdPopulate_Click(object sender, EventArgs e)
    {
        if (dataGridView1.ColumnCount > 0)
        {
            dataGridView1 = new DataGridView();
        }
        DataTable dt = new DataTable();
        dt.Columns.Add("number");
        dt.Columns.Add("name");
        dt.Columns.Add("image");

        dt.Rows.Add(new object[] { "Item 1","Apple","" });
        dt.Rows.Add(new object[] { "Item 2", "Orange", "" });
        dt.Rows.Add(new object[] { "Item 3", "Banana", "" });
        dataGridView1.DataSource = dt.DefaultView;
    }

//这是放入屏幕截图的表格 在此处输入图像描述

这是源代码链接: 在此处输入链接描述

于 2013-07-22T10:34:53.047 回答
1

唯一好的选择是添加图像而不是绘制任何图形,将数据转换为图像并将该图像添加到指定的列中。

于 2013-07-22T08:07:53.717 回答