摘要: Binding 作为数据的桥梁,分为Binding的源(source)和目标(target)Binding是一种自动机制,当值变化后能通知,要实现需要在数据源的对象实现INotifyPropertyChanged接口 public class Student : INotifyPropertyChanged { public event PropertyChangedEventHandler PropertyChanged; private string name; public string Name { g... 阅读全文
posted @ 2012-10-17 22:23 Mr.Lin_♪ 阅读(194) 评论(0) 推荐(0)