18 lines
511 B
C#
18 lines
511 B
C#
|
using System.Windows;
|
||
|
|
||
|
namespace DM_Weight.util
|
||
|
{
|
||
|
public class BindingProxy : Freezable
|
||
|
{
|
||
|
protected override Freezable CreateInstanceCore() => new BindingProxy();
|
||
|
|
||
|
public object? Data
|
||
|
{
|
||
|
get => GetValue(DataProperty);
|
||
|
set => SetValue(DataProperty, value);
|
||
|
}
|
||
|
|
||
|
public static readonly DependencyProperty DataProperty =
|
||
|
DependencyProperty.Register("Data", typeof(object), typeof(BindingProxy), new UIPropertyMetadata(null));
|
||
|
}
|
||
|
}
|