我正在构建一个必须显示从外部系统接收到的数据的应用程序。这些数据可以很快进入,而每行占用的字节量相对较小。这意味着每个时间单位必须添加很多行。我目前处于接收数据的速度比我可以处理的速度更快的地步,这意味着我的内存使用量正在上升。
我认为其中很大一部分与绘制实际的dataGridView有关。我对 dataGridView 做了一些小调整,希望它已经可以提高性能。(例如禁用自动尺寸、特殊样式等)
在最近的一次添加中,我添加了行的着色,这是必需的。目前我的应用程序工作如下:
- 我从外部系统接收数据
- 我通过一个线程将数据放在一个队列(ConcurrencyQueue)中
- 另一个线程从该队列中获取数据,对其进行处理并将其添加到绑定到表的 BindingList 中。
实际添加发生在具有 2 个参数的函数中: 1. 包含列项目的列表(项目) 2. 行的颜色。(颜色)
它看起来如下(半伪):
/* Store the color for the row in the color list so it is accessible from the event */
rowColors.Add(rowColor); //Class variable that stored the colors of the rows used in the DataGridCellFormatting event
/* Create the row that is to be added. */
ResultRow resultRow = new ResultRow();
foreach(item in items)
{
resultRow.Set(item); /* It's actually a dictionary because some fields are optional, hence this instead of a direct constructor call) */
}
bindingList.Add(resultRow);
/* Row coloring based on error is done in the OnCellFormatting() */
/* Auto scroll down */
if (dataGrid.Rows.Count > 0)
{
dataGrid.FirstDisplayedScrollingRowIndex = dataGrid.Rows.Count - 1;
}
如上面的代码所示,我收到的颜色被添加到一个列表中,该列表用于 datagridview 的事件,如下所示:
void DataGridCellFormattingEvent(object sender, DataGridViewCellFormattingEventArgs e)
{
// done by column so it happens once per row
if (e.ColumnIndex == dataGrid.Columns["Errors"].Index)
{
dataGrid.Rows[e.RowIndex].DefaultCellStyle.BackColor = rowColors[e.RowIndex];
}
}
BindingList 定义如下:
绑定列表绑定列表;
其中 ResultRow 是一个具有如下结构的类:
public class ResultRow
{
private int first = 0;
private string second = "";
private UInt64 third = 0;
private IPAddress fourth = null;
//etc
public ResultRow()
{
}
public void Set (<the values>) //In actuallity a KeyValuePair
{
//field gets set here
}
public UInt64 Third
{
get { return third; }
set { third = value; }
}
/* etc. */
我可以做一些相对简单的事情来提高性能吗?我正在考虑可能在处理繁忙时禁用数据网格的绘制,并在完成时绘制。(虽然不是首选)另一件事可能是不那么频繁地更新,而不是在每个收到的项目之后更新。(不过,BindingList 似乎会在添加某些内容时自动更新 DataGridView)
我希望有人愿意/能够提供帮助。
-编辑-
当它以上述方式处理数据时,尤其是在一段时间之后,表单的响应能力也很差。(即使上述过程发生在后台工作人员和后台线程中)