A cross-platform UI framework for .NET
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

21 lines
679 B

namespace Perspex.Xaml.DataBinding
{
using System;
using System.ComponentModel;
public class SourceBindingEndpoint
{
public Type PropertyType { get; }
public INotifyPropertyChanged Source { get; }
public dynamic PropertyGetter { get; }
public Delegate PropertySetter { get; }
public SourceBindingEndpoint(INotifyPropertyChanged source, Type propertyType, dynamic propertyGetter, Delegate propertySetter)
{
this.Source = source;
this.PropertyType = propertyType;
this.PropertyGetter = propertyGetter;
this.PropertySetter = propertySetter;
}
}
}