我有DataGridView
一个自定义列表。我使用以下方法绑定它:
datagridview.DataSource = MyList;
问题是每当我从线程向列表中添加新行时,它都不会在 DataGridView 中显示新行。有没有一种方法可以简单地覆盖OnNewData
事件类型DoRefresh()
并且可能不会丢失滚动位置?
我正在使用的同步列表:
public class SyncList<T> : System.ComponentModel.BindingList<T>
{
private System.ComponentModel.ISynchronizeInvoke _SyncObject;
private System.Action<System.ComponentModel.ListChangedEventArgs> _FireEventAction;
public SyncList()
: this(null)
{
}
public SyncList(System.ComponentModel.ISynchronizeInvoke syncObject)
{
_SyncObject = syncObject;
_FireEventAction = FireEvent;
}
protected override void OnListChanged(System.ComponentModel.ListChangedEventArgs args)
{
if (_SyncObject == null)
{
FireEvent(args);
}
else
{
_SyncObject.Invoke(_FireEventAction, new object[] { args });
}
}