<TextBox Name="t" Text="{Binding Information}"/>
这个TextBox的text绑定了数据,当后台Information发生变化后前台怎么没变化啊?应该怎么做啊?请大侠帮忙!谢谢!
在set 的时候 写上 OnPropertyChanged("Information")
让它继承个InotifypropertyChanged接口就可以了,不过还是要谢谢你!