How can I bind the count of a list to a label. The following code does't get updated with the list is changed:
private IList<string> list = new List<string>();
//...
label1.DataBindings.Add("Text", list.Count, "");
|
1
|
|
|
|
|
|
According to Marc Gravell for this problem, he has suggested to create a facade that wraps the collection you want to bind to label1.Text I have tried to implement one (for fun) and was able to get binding to Count working. Here is the full of the demo.
|
||||||
|
|
|
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 to implement your custom List or to find a collection that notifies when the Count is changed. |
||
|
|
|
You can use DataSourceChanged if you have a datasource for the listbox. Just remember to update and rebind the datasource. This may be a bit ghetto but here is the example I worked with:
|
|||
|
|