123456789101112131415161718192021222324252627282930 |
- ///////////////////////////////////////////////////////////////////////////////
- using System.Windows;
- namespace FWindSoft.Wpf
- {
- public class BindingProxy:Freezable
- {
- /*
- Freezable要深入理解
- */
- protected override Freezable CreateInstanceCore()
- {
- return new BindingProxy();
- }
- public static readonly DependencyProperty DataProperty = DependencyProperty.Register("Data", typeof (object),
- typeof (BindingProxy), new UIPropertyMetadata(null));
- /// <summary>
- /// 关联数据
- /// </summary>
- public object Data
- {
- get { return (object) GetValue(DataProperty); }
- set { SetValue(DataProperty, value); }
- }
- }
- }
|