集合绑定源对象

实现 IEnumerable 接口支持集合元素遍历
实现 INotifyCollectionChanged 支持动态更新通知
Utility: WPF 提供有方便的 ObservableCollection 类
绑定目标要求:
继承 ItemsControl 类,并实现 ItemsSource 与 UI 界
面的交互逻辑,成为一个集合控件
Databinding:
myData data = new myData(“hello”);
Binding bind = new Binding();
TextBox mytextbox = new TextBox();
bind.Source = data;
bind.Mode =BindingMode.OneWay ; //twoway,onewaytoSource,onetime,default.
bind.UpdateSourceTrigger = UpdateSourceTrigger.PropertyChanged;
bb.SetBinding(TextBox.TextProperty, bind );
WPF资源范围
WPF将资源划归到一些不同类型的范围中:
系统级资源(System)
应用程序级资源(Application)
窗体级资源(Window)
元素级资源(Element)
页面级自由(Page)
元素级资源(Element)
系统级的资源在整个系统范围可见,应用程序级的资
源在应用程序范围可见,依次类推。
可以使用XAML声明绑定资源,也可以使用
this.Resources.Add(“mybrush”,new SolidColorBrush (Colors .Red ));

你可能感兴趣的:(集合绑定源对象)