Add initially missing collection items via binding
问题 Given: class StringRecord : INotifyPropertyChanged { public string Key { get; set; } // real INPC implementation is omitted public string Value { get; set; } // real INPC implementation is omitted ... } class Container { public ObservableKeyedCollection<string, StringRecord> Params { get; set; } ... { The ObservableKeyedCollection is the one found here. A TextBox is bound to one of the collection items (DataContext is inherited): <TextBox Text="{Binding Params[APN_HOST].Value}"/> When I