| 1234567891011121314151617181920212223242526 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Windows;
- namespace Muchinfo.MTPClient.Delivery.Utilities
- {
- public class BindingProxy : Freezable
- {
- #region 重写Freezable
- protected override Freezable CreateInstanceCore()
- {
- return new BindingProxy();
- }
- #endregion
- public object Data
- {
- get { return (object)GetValue(DataProperty); }
- set { SetValue(DataProperty, value); }
- }
- public static readonly DependencyProperty DataProperty = DependencyProperty.Register("Data", typeof(object), typeof(BindingProxy));
- }
- }
|