8

是否可以在不知道绑定属性的情况下直接设置双向绑定后面的值?

我有一个附加属性,它绑定到这样的属性:

<Element my:Utils.MyProperty="{Binding Something}" />

现在我想Something从附加属性的角度更改有效存储的值。所以我不能直接访问绑定的属性,而只能引用DependencyObject(即 Element 实例)和DependencyProperty对象本身。

简单地设置它时的问题DependencyObject.SetValue是这有效地删除了绑定,但我想更改底层的绑定属性。

使用BindingOperationsI 可以同时获得BindingBindingExpression。现在有没有办法访问它背后的属性并改变它的值?

4

6 回答 6

6

好的,我现在自己在绑定表达式上使用了一些反射技巧解决了这个问题。

我基本上查看绑定路径和响应数据项并尝试自己解决绑定。对于更复杂的绑定路径,这可能会失败,但对于我上面示例中的简单属性名称,这应该可以正常工作。

BindingExpression bindingExpression = BindingOperations.GetBindingExpression(dependencyObj, dependencyProperty);
if (bindingExpression != null)
{
    PropertyInfo property = bindingExpression.DataItem.GetType().GetProperty(bindingExpression.ParentBinding.Path.Path);
    if (property != null)
        property.SetValue(bindingExpression.DataItem, newValue, null);
}
于 2012-06-20T14:55:31.653 回答
0

尝试在PropertyMetadata

您可以在 MSDN 上找到更多信息 - http://msdn.microsoft.com/en-us/library/system.windows.propertymetadata.aspx

这是一个例子:

  public Boolean State
  {
    get { return (Boolean)this.GetValue(StateProperty); }
    set { this.SetValue(StateProperty, value); } 
  }
  public static readonly DependencyProperty StateProperty = DependencyProperty.Register(
    "State", typeof(Boolean), typeof(MyStateControl),new PropertyMetadata(myDefaultValue));
于 2012-06-20T14:13:48.300 回答
0

简单地通过 DependencyObject.SetValue 设置它时的问题是这有效地删除了绑定,但我想更改底层绑定属性。

如果 Binding.Mode 设置为 OneWay,则为 true。如果将其设置为 TwoWay,则使用 DependencyObject.SetValue 不会删除其绑定。

这是 C# 中 Pro WPF 4.5 的引用(第 232 页):

删除绑定:如果要删除绑定以便以通常的方式设置属性,则需要 ClearBinding() 或 ClearAllBindings() 方法的帮助。仅仅对属性应用一个新值是不够的。如果您使用双向绑定,您设置的值将传播到链接对象,并且两个属性保持同步。

因此,为了能够在不删除其绑定的情况下使用 SetValue 更改(和传播) my:Utils.MyProperty:

<Element my:Utils.MyProperty="{Binding Something, Mode=TwoWay}" />
于 2016-11-01T21:32:34.997 回答
0

您可以通过虚拟对象上的绑定传递值。

    public static void SetValue(BindingExpression exp, object value)
    {
        if (exp == null)
            throw new ValueCannotBeNullException(() => exp);
        Binding dummyBinding = new Binding(exp.ParentBinding.Path.Path);
        dummyBinding.Mode = BindingMode.OneWayToSource;
        dummyBinding.Source = exp.DataItem;
        SetValue(dummyBinding, value);
    }

    public static void SetValue(Binding binding, object value)
    {
        BindingDummyObject o = new BindingDummyObject();
        BindingOperations.SetBinding(o, BindingDummyObject.ValueProperty, binding);
        o.Value = value;
        BindingOperations.ClearBinding(o, BindingDummyObject.ValueProperty);
    }

这是我的虚拟对象

   internal class BindingDummyObject : DependencyObject
{
    public object Value
    {
        get
        {
            return (object)GetValue(ValueProperty);
        }
        set
        {
            SetValue(ValueProperty, value);
        }
    }

    public static readonly DependencyProperty ValueProperty = DependencyProperty.Register("Value", typeof(object), typeof(BindingDummyObject));
}
于 2017-12-15T10:02:39.720 回答
0

在尝试实现由枚举支持的菜单时,我遇到了类似的问题。我希望能够将基础属性(它是一个枚举)设置为与菜单项关联的值。

在我的示例中,我将两个属性附加到了 MenuItem:

    public static readonly DependencyProperty EnumTargetProperty = DependencyProperty.RegisterAttached(
        "EnumTarget",
        typeof(object),
        typeof(MenuItem),
        new PropertyMetadata(null, EnumTargetChangedCallback)
        );

    public static readonly DependencyProperty EnumValueProperty = DependencyProperty.RegisterAttached(
        "EnumValue",
        typeof(object),
        typeof(MenuItem),
        new PropertyMetadata(null, EnumValueChangedCallback)
        );

标记如下所示:

                <MenuItem.ItemContainerStyle>
                    <Style TargetType="MenuItem">
                        <Setter Property="IsCheckable" Value="True"/>
                        <Setter Property="local:EnumMenuItem.EnumValue" Value="{Binding EnumMember}"/>
                        <Setter Property="local:EnumMenuItem.EnumTarget" Value="{Binding RelativeSource={RelativeSource AncestorType=local:MainWindow}, Path=DataContext.Settings.AutoUpdateModel.Ring}"/>
                        <Setter Property="Header" Value="{Binding DisplayName}"/>
                        <Setter Property="ToolTip" Value="{Binding ToolTip}"/>
                    </Style>
                </MenuItem.ItemContainerStyle>

父菜单项的项目源绑定到为枚举中的每个成员提供值的 MarkupExtension 实现。

现在,当检查菜单项时,我使用此代码设置属性的值而不删除绑定。

        menuItem.Checked += (sender, args) =>
        {
            var checkedMenuItem = (MenuItem)sender;
            var targetEnum = checkedMenuItem.GetValue(EnumTargetProperty);
            var menuItemValue = checkedMenuItem.GetValue(EnumValueProperty);
            if (targetEnum != null && menuItemValue != null)
            {
                var bindingExpression = BindingOperations.GetBindingExpression(d, EnumTargetProperty);
                if (bindingExpression != null)
                {
                    var enumTargetObject = bindingExpression.ResolvedSource;
                    if (enumTargetObject != null)
                    {
                        var propertyName = bindingExpression.ResolvedSourcePropertyName;
                        if (!string.IsNullOrEmpty(propertyName))
                        {
                            var propInfo = enumTargetObject.GetType().GetProperty(propertyName);
                            if (propInfo != null)
                            {
                                propInfo.SetValue(enumTargetObject, menuItemValue);
                            }
                        }
                    }
                }
            }
        };

这似乎适用于我的路径复杂的场景。

我希望这会有所帮助!

于 2018-06-01T05:15:50.900 回答
0

这是我为 a 所做的TextBlock

BindingExpression bindingExpression = textBlock.GetBindingExpression(TextBlock.TextProperty);
string propertyName = bindingExpression.ResolvedSourcePropertyName;
PropertyInfo propertyInfo;
Type type = bindingExpression.DataItem.GetType();
object[] indices = null;
if (propertyName.StartsWith("[") && propertyName.EndsWith("]"))
{
    // Indexed property
    propertyInfo = type.GetProperty("Item");
    indices = new object[] { propertyName.Trim('[', ']') };
} 
else
    propertyInfo = type.GetProperty(propertyName);
if (propertyInfo.PropertyType == typeof(string))
{
    propertyInfo.SetValue(bindingExpression.DataItem, text, indices);
    // To update the UI.
    bindingExpression.UpdateTarget();
}
于 2020-12-29T18:49:22.413 回答