Tagged Questions
1
vote
1answer
776 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
3answers
771 views
How do I make IEditableObject.EndEdit atomic?
If I have an Address object which implements IEditableObject, I might have EndEdit implementation like this:
public void EndEdit()
{
// BeginEdit would set _editInProgress and update *Editing ...
0
votes
1answer
213 views
How do I make IEditableObject.EndEdit atomic?
If I have an Address class that implements IEditableObject, I might have EndEdit implementation like this:
public void EndEdit()
{
// BeginEdit would have set _editInProgress and save to *Editing ...