Search Results

1
vote

Binding to DataGridView - Is there a way to “bind” the background color of a cell?

Out of the box, any DataGridViewColumn can be bound to only one property of the objects in the DataSource, the name of the property being given by the DataPropertyName of each DataGridViewColumn (y …
1
vote

C#, Winforms & LINQ to SQL.. Datacontext lifecycle?

If you are thinking to choose between having a long-lived DataContext (for example as a Singleton in your app) or having short-lived DataContexts, I would choose the second. I would new() a DataCon …
1
vote

How to bind a list count to a label in WinForms?

Bindings listen to the PropertyChanged event of the IPropertyChanged interface. I don't think that List.Count is reported as a PropertyChanged event when it is changed. What you could do is …