Binding an ObservableCollection.Count to Label with WPF
问题 I have a simple Label that should include the bound .Count value of a Property of an ObservableCollection . The thing is, that the result is always 0 (zero). The same Property is bound to a DataGrid, which works perfectly and even updates if something has changed in the Collection. What am I doing wrong here? Here is my code: <Label ContentStringFormat="Members: {0}"> <Label.Content> <Binding Path="MembersList.Count" Mode="OneWay" UpdateSourceTrigger="Default" /> </Label.Content> </Label> The