- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在构建一个必须显示从外部系统接收的数据的应用程序。这些数据可以很快进入,而每行占用的字节数相对较小。这意味着每个时间单位必须添加很多行。我目前处于接收数据速度快于我处理能力的地步,这意味着我的内存使用量正在上升。
我认为其中很大一部分与绘制实际的 dataGridView 有关。我对 dataGridView 做了一些微调,希望它能提高性能。 (例如禁用自动调整大小、特殊样式等)
在最近的添加中,我添加了行的着色,这是必需的。目前我的应用程序工作如下:
实际的添加发生在一个有两个参数的函数中:1. 包含列项目的列表(items)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定义如下:
绑定(bind)列表绑定(bind)列表;
其中 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)
我希望有人愿意/能够提供帮助。
-编辑-
表单的响应性,因为当它以上述方式处理数据时,尤其是在一段时间后,它也很糟糕。 (即使上述过程发生在 backgroundworker(s) 和后台线程中)
最佳答案
由于网格中的行数过多,性能可能会在一段时间后下降。你应该给Virtual Mode一试。
但首先,尝试延迟网格的更新并批量添加新条目,即降低更新频率。因此,在每次批量更新之前:
// stop raising update events
bindingList.RaiseListChangedEvents = false;
之后:
// restore update events, raise reset event
bindingList.RaiseListChangedEvents = true;
bindingList.ResetBindings()
在最后一行之后继续滚动到最后一行。
关于c# - DataGridView 性能与 BindingList 数据源相结合,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10494757/
我有一个事件的绑定(bind)列表,每个事件都有一个 BuyOrders 的绑定(bind)列表 bindingListActivty.Select(k => k._dataGridViewId ==
是否可以将我的类的属性名称映射到 UltraGrid 控件的列名称? MyClass 是例如一个用户类: class User { public int Id { get; set;
基本上我有一个具有以下签名的方法: public void Save(BindingList items); 我正在尝试使用 调用它 classInstance.Save(items); //item
我有一个看似简单的问题,我希望协调两个列表,以便“旧”主列表由包含更新元素的"new"列表更新。元素由键属性表示。这些是我的要求: 仅当任何属性发生更改时,任一列表中具有相同键的所有元素都会导致将"n
有没有一种简单的方法来创建一个 BindingList 包装器(带投影),它会随着原始列表的更新而更新? 例如,假设我有一个可变的数字列表,我想在 ComboBox 中将它们表示为十六进制字符串。使用
我已经填写了绑定(bind)列表 所以我想尽快清除它 所以我有至少有 2000 项的绑定(bind)列表 什么是最好的方法? 最佳答案 你应该使用: myBindingList.Clear() 如 t
将数组转换为 BindingList 的最简单和最快的方法是什么? 最佳答案 使用 BindingList采用 IList 的构造函数. var binding = new BindingList(m
我一直在尝试寻找问题的可能原因,但似乎找不到: 错误: System.NotSupportedException: Collection is read-only. at System.ThrowHe
我不明白如何克隆 BindingList . 我想创建一个不共享相同引用的现有列表的新副本。另一个复杂情况是我的对象本身包含一个嵌套的 BindingList . 我尝试了构造函数方法: Bindin
myGenericList.RemoveAll(x => (x.StudentName == "bad student")); 效果很好,但绑定(bind)列表没有此方法。如何为绑定(bind)列表创
我的类有一个 BindingList,我想在其中使用它的属性填充 ComboBox,这样当我的列表更改时,ComboBox 也会更改。 public class UserAccess { pu
复制 BindingList 的最佳方法是什么? 只使用 ForEach()?或者有更好的方法吗? 最佳答案 BindingList 有一个可以接受 IList 的构造函数。而 BindingList
我正在尝试了解更多有关 BindingList 的信息,因为我相信它会对我正在进行的项目有所帮助。 目前,我有一个对象类 (ScannedImage),它是类 (HashedImage) 的子类型,该
我有一个绑定(bind)到 BindingList 的 DevExpress GridControl。我使用了 BindingList,以便更改自动应用到绑定(bind)控件。 当我从列表中添加或删除
我有一个 C# WinForms 应用程序,其中包含一个 BindingList,其中填充了像这样的小部件对象: BindingList widgetsList = new BindingList()
有没有办法强制 BindingList 排序(在单元测试中)?根据documentation ,方法 ApplySortCore 被标记为 protected ,但绑定(bind)控件必须通过某种方式
我正在使用 BindingList填充一些控件。 在表单的一部分,我需要使用存储在 BindingList 中的一些数据创建和排列。假设我有 BindingList并想检索所有 CEmployee.S
BindingList有没有去除重复元素的方案?我试过: BindingList accounts = new BindingList(); accounts.add(new Account("u
刚学C#/.NET就遇到了这个问题。 所以在我的解决方案中,我有 2 个项目:winforms UI 和带有逻辑的 dll。在 dll 中,我有 BindingList,它为 UI 中的列表框提供数据
我有一个异步 BindingList,其中包含在工作线程上操作并绑定(bind)到主 UI 线程上的 BindingSource 以及绑定(bind)到 DataGridView 的 BindingS
我是一名优秀的程序员,十分优秀!