ServerManagers/src/ServerManager.Common/Lib/BindingProxy.cs
2021-01-07 16:23:23 +10:00

21 lines
626 B
C#

using System.Windows;
namespace ServerManagerTool.Common.Lib
{
public class BindingProxy : Freezable
{
public static readonly DependencyProperty DataProperty = DependencyProperty.Register("Data", typeof(object), typeof(BindingProxy), new UIPropertyMetadata(null));
public object Data
{
get { return (object)GetValue(DataProperty); }
set { SetValue(DataProperty, value); }
}
#region Overrides of Freezable
protected override Freezable CreateInstanceCore()
{
return new BindingProxy();
}
#endregion
}
}