我有一个DataGridView
和一个自定义列表。我用它绑定它:
datagridview.DataSource = MyList;
问题是每当我从一个线程向列表中添加新行时,它都不会在DataGridView中显示新行。有没有办法可以简单地覆盖OnNewData
类型的事件DoRefresh()
,并且可能不会丢失滚动位置?
SyncList我正在使用:
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 });
}
}
答案 0 :(得分:0)
您的列表需要实现INotifyPropertyChanged以自动更新绑定控件才能工作。如果这样做,则需要在列表中添加或删除项目时引发PropertyChanged事件。
或者,只需使用已正确实现此接口的BindingList或ObservableCollection。
绑定列表:http://msdn.microsoft.com/en-us/library/ms132679.aspx
Observable Collection:http://msdn.microsoft.com/en-us/library/ms668604.aspx