28 lines
800 B
C#
28 lines
800 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.Windows;
|
|
|
|
namespace CapMachine.Wpf
|
|
{
|
|
public class BindingProxy : Freezable
|
|
{
|
|
protected override Freezable CreateInstanceCore()
|
|
{
|
|
return new BindingProxy();
|
|
}
|
|
|
|
public object Data
|
|
{
|
|
get { return (object)GetValue(DataProperty); }
|
|
set { SetValue(DataProperty, value); }
|
|
}
|
|
|
|
// Using a DependencyProperty as the backing store for Data. This enables animation, styling, binding, etc...
|
|
public static readonly DependencyProperty DataProperty =
|
|
DependencyProperty.Register("Data", typeof(object), typeof(BindingProxy), new PropertyMetadata(null));
|
|
}
|
|
}
|