Two-Way Binding Issue of Unknown Object in WPF Custom Control Dependency Property
问题 I'm having a Custom Control - Implemented for AutoComplete TextBox. I got all idea's from the following question Create a Custom Control with the combination of multiple controls in WPF C#. In that Custom Control, they suggest the following code for adding item, its perfectly working and the Two-Way Binding too . (this.ItemsSource as IList<string>).Add(this._textBox.Text); But, I changed the following code to Unknown Object, so I changed IList<string> to IList<object> (this.ItemsSource as