mirror of
https://gitee.com/csharpui/CPF.git
synced 2025-04-04 23:39:26 +08:00
调整绑定参数
This commit is contained in:
parent
d18390067f
commit
22236251cb
@ -308,6 +308,10 @@ namespace CPF
|
||||
{
|
||||
Value = value;
|
||||
}
|
||||
public AttachedDescribe(object value, Func<UIElement, UIElement> find, string sourceProperty, BindingMode binding, Func<object, object> convert, Func<object, object> convertBack, Action<Binding, object, Exception> SourceToTargetError, Action<Binding, object, Exception> TargetToSourceError) : base(find, sourceProperty, binding, convert, convertBack, SourceToTargetError, TargetToSourceError)
|
||||
{
|
||||
Value = value;
|
||||
}
|
||||
|
||||
|
||||
public object Value { get; set; }
|
||||
|
@ -108,6 +108,18 @@ namespace CPF
|
||||
this.TargetToSourceError = TargetToSourceError;
|
||||
}
|
||||
|
||||
public BindingDescribe(Func<UIElement, UIElement> find, string sourcePropertyName, BindingMode bindingMode = BindingMode.OneWay, Func<object, object> convert = null, Func<object, object> convertBack = null, Action<Binding, object, Exception> SourceToTargetError = null, Action<Binding, object, Exception> TargetToSourceError = null)
|
||||
{
|
||||
BindingMode = bindingMode;
|
||||
PropertyName = sourcePropertyName;
|
||||
Source = find;
|
||||
//Find = find;
|
||||
Convert = convert;
|
||||
ConvertBack = convertBack;
|
||||
this.SourceToTargetError = SourceToTargetError;
|
||||
this.TargetToSourceError = TargetToSourceError;
|
||||
}
|
||||
|
||||
//public BindingDescribe(CommandDescribe command)
|
||||
//{
|
||||
// Command = command;
|
||||
@ -388,6 +400,7 @@ namespace CPF
|
||||
//}
|
||||
public BindingMode BindingMode { get; set; } = BindingMode.OneWay;
|
||||
public object Source { get; set; }
|
||||
//public Func<UIElement, UIElement> Find { get; set; }
|
||||
|
||||
public Action<Binding, object, Exception> SourceToTargetError { get; set; }
|
||||
public Action<Binding, object, Exception> TargetToSourceError { get; set; }
|
||||
|
@ -223,6 +223,10 @@ namespace CPF
|
||||
{
|
||||
Bindings.Add(propertyName, value.PropertyName, layer1, value.BindingMode, value.Convert, value.ConvertBack, value.SourceToTargetError, value.TargetToSourceError);
|
||||
}
|
||||
else if (value.Source is Func<UIElement, UIElement> find)
|
||||
{
|
||||
Bindings.Add(propertyName, value.PropertyName, find, value.BindingMode, value.Convert, value.ConvertBack, value.SourceToTargetError, value.TargetToSourceError);
|
||||
}
|
||||
else
|
||||
{
|
||||
Bindings.Add(propertyName, value.PropertyName, value.Source, value.BindingMode, value.Convert, value.ConvertBack, value.SourceToTargetError, value.TargetToSourceError);
|
||||
|
@ -644,10 +644,11 @@ namespace CPF.Json
|
||||
class ILGenerator
|
||||
{
|
||||
static Type type = Type.GetType("System.Reflection.Emit.ILGenerator");
|
||||
static Type LocalBuilder = Type.GetType("System.Reflection.Emit.LocalBuilder");
|
||||
static MethodInfo Emit_ = type.GetMethod("Emit", new Type[] { typeof(OpCode) });
|
||||
static MethodInfo Emit_Type = type.GetMethod("Emit", new Type[] { typeof(OpCode), typeof(Type) });
|
||||
static MethodInfo Emit_con = type.GetMethod("Emit", new Type[] { typeof(OpCode), typeof(ConstructorInfo) });
|
||||
static MethodInfo Emit_Local = type.GetMethod("Emit", new Type[] { typeof(OpCode), typeof(LocalVariableInfo) });
|
||||
static MethodInfo Emit_Local = type.GetMethod("Emit", new Type[] { typeof(OpCode), LocalBuilder });
|
||||
static MethodInfo Emit_FieldInfo = type.GetMethod("Emit", new Type[] { typeof(OpCode), typeof(FieldInfo) });
|
||||
static MethodInfo Emit_MethodInfo = type.GetMethod("Emit", new Type[] { typeof(OpCode), typeof(MethodInfo) });
|
||||
static MethodInfo Emit_MethodInfo_Type = type.GetMethod("EmitCall", new Type[] { typeof(OpCode), typeof(MethodInfo), typeof(Type[]) });
|
||||
|
Loading…
Reference in New Issue
Block a user