Does Binding work ONLY with DependencyProperty?
问题 MSDN says, Each binding typically has these four components: a binding target object, a target property, a binding source, and a Path to the value in the binding source to use. For example, if you want to bind the content of a TextBox to the Name property of an Employee object, your target object is the TextBox, the target property is the Text property , the value to use is Name, and the source object is the Employee object. The target property must be a dependency property. The above excerpt