TextBox.TextProperty vs TextBox.Text in wpf -
if see definition of textbox in wpf can find 2 property, textproperty & other text property, same or difference?
textproperty static. dependency property text registered property management system in wpf textbox type. registration allows property involved in binding, change tracking , value resolution. text property plain old c# property used hold text value particular instance of textbox.
for more information dependency properties see excellent page: http://www.wpftutorial.net/dependencyproperties.html
Comments
Post a Comment