gpt4 book ai didi

c# - 为什么使用 CellPainting 方法向 datagridview 单元格添加彩色矩形会使单元格中的文本看起来模糊?

转载 作者:太空宇宙 更新时间:2023-11-03 11:59:07 25 4
gpt4 key购买 nike

想要在带有彩色背景的 datagridview 单元格中突出显示单词,我发现了一些使用 datagridview 的“CellPainting”方法的代码(可能在此处)。它在文本中找到单词并在其后面放置一个彩色背景。这工作正常,但最近我更改了代码,因此它能够突出显示多个单词(每个单词都有不同的颜色)。这也有效,但我注意到当我有更多突出显示的单词时,文本会变得模糊(见图)。

我似乎找不到原因。这是性能问题吗?还是文字打印成双...我似乎没有找到原因。

Blurry lines

下面我将代码包含在 CellPainting 方法中。

编辑:感谢 Stefan 的回答,让我看到了我的 nooby 错误! “e.PaintContent(e.CellBounds);”应该在 for 循环之外。这是我的意图,但用错了地方。下面的代码已更改,现在可以正常工作。我在下面的代码中留下了位置错误的行作为注释。

private void dataGridView1_CellPainting(object sender, DataGridViewCellPaintingEventArgs e)
{
// High light and searching apply over selective fields of grid.
if (e.RowIndex > -1 && e.ColumnIndex > -1)
{
// Check data for search
if (HighlightText?.Count > 0 && HighlightColor?.Count > 0 && HighlightColor.Count >= HighlightText.Count)
{

String gridCellValue = e.FormattedValue.ToString();
int startIndexInCellValue;
// check the index of search text into grid cell.

bool BackgroundPainted = false;
for (int i = 0; i < HighlightText.Count; i++)
{
if ((startIndexInCellValue = gridCellValue.ToLower().IndexOf(HighlightText[i])) >= 0)
{
if (BackgroundPainted == false)
{
e.Handled = true;
e.PaintBackground(e.CellBounds, true);
BackgroundPainted = true;
}
//the highlite rectangle
Rectangle hl_rect = new Rectangle();
hl_rect.Y = e.CellBounds.Y + 2;
hl_rect.Height = e.CellBounds.Height - 5;
//find the size of the text before the search word in grid cell data.
String sBeforeSearchword = gridCellValue.Substring(0, startIndexInCellValue);
//size of the search word in the grid cell data
String sSearchWord = gridCellValue.Substring(startIndexInCellValue, HighlightText[i].Length);
Size s1 = TextRenderer.MeasureText(e.Graphics, sBeforeSearchword, e.CellStyle.Font, e.CellBounds.Size);
Size s2 = TextRenderer.MeasureText(e.Graphics, sSearchWord, e.CellStyle.Font, e.CellBounds.Size);
if (s1.Width > 5)
{
hl_rect.X = e.CellBounds.X + s1.Width - 5;
hl_rect.Width = s2.Width - 6;
}
else
{
hl_rect.X = e.CellBounds.X + 2;
hl_rect.Width = s2.Width - 6;
}
SolidBrush hl_brush = new SolidBrush(HighlightColor[i]);
//paint the background behind the search word
e.Graphics.FillRectangle(hl_brush, hl_rect);
hl_brush.Dispose();
}
//This was the wrong position
//if (BackgroundPainted) { e.PaintContent(e.CellBounds); }
}
//This is the right position
if (BackgroundPainted) { e.PaintContent(e.CellBounds); }
}
}
}

最佳答案

是的,我认为通过调用多次绘制单元格内容

e.PaintContent(e.CellBounds)

循环的每次迭代。这很可能会绘制文本和高光。因此,当突出显示两个部分时,文本也会被绘制两次。

解决方案是单独绘制一次文本。

关于c# - 为什么使用 CellPainting 方法向 datagridview 单元格添加彩色矩形会使单元格中的文本看起来模糊?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57885454/

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