Group: StrataFrame Developers
Posts: 3K,
Visits: 2.5K
|
Are you using a BusinessBindingSource? If so, then your best bet will be to create a new class that inherits from BBS for use with this grid. THe only thing you will need to do is create a method, say, ResetDataSource() that internally calls OnListChanged and passes a new ListChangedEventArgs. You can pass Reset for the enum and -1 for the index to the ListChangedEventArgs constructor. That event is what the grid listens to to refresh the grid.
|