Tagged Questions

1
vote
1answer
762 views

Read-only DataGridView and IEditableObject

Good evening I've got a little problem with my DataGridView in a .NET Windows Forms project. The grid is read-only and bound to a sortable BindingList<T> which contains custom business objects. ...
0
votes
1answer
402 views

How to prevent CurrencyManager from calling BeginEdit()/EndEdit() methods for bound objects

I've got a form with several textboxes and one datagrid. One business entity can be bound to this form. For example, BO looks like this: class BO : IEditableObject, INotifyPropertyChanged { public ...