从XAML设置ViewModel属性值

时间:2011-06-10 08:30:07

标签: wpf xaml mvvm properties mef

我有一个在XAML中声明的视图(见下文)。使用MEF自动创建关联的视图模型。我希望能够做到这样的事情:

<local:MyControl Owner={x:Static local:Owners.ProjectOwner} />

所需的净效果是将某些视图模型属性设置为等于Owners.ProjectOwner。

我可以使用hacky代码隐藏来实现所需的结果,但宁愿通过绑定或类似方式来实现。任何人都可以提出这样做​​的方法吗?

更新

我辞职了,写了一个行为。但是,我没有完全针对一个特定案例付出所有努力,而是将我的解决方案归结为通用,并将其包含在下面,以防任何人感兴趣。这是一种混合行为(System.Windows.Interactivity.dll),但可以很容易地成为传统的附加行为。

using System;
using System.Windows;
using System.Windows.Interactivity;

namespace BlendBehaviors
{
    public class SetViewModelPropertyBehavior : Behavior<FrameworkElement>
    {
        public static readonly DependencyProperty PropertyNameProperty =
            DependencyProperty.Register("PropertyName", typeof(string), typeof(SetViewModelPropertyBehavior));

        public static readonly DependencyProperty PropertyValueProperty =
            DependencyProperty.Register("PropertyValue", typeof(object), typeof(SetViewModelPropertyBehavior));

        public SetViewModelPropertyBehavior()
        { }

        public string PropertyName
        {
            get { return (string)GetValue(PropertyNameProperty); }
            set { SetValue(PropertyNameProperty, value); }
        }

        public object PropertyValue
        {
            get { return GetValue(PropertyValueProperty); }
            set { SetValue(PropertyValueProperty, value); }
        }

        protected override void OnAttached()
        {
            base.OnAttached();
            var ao = AssociatedObject;
            SetViewModel(ao.DataContext);
            ao.DataContextChanged += FrameworkElement_DataContextChanged;
        }

        protected override void OnDetaching()
        {
            base.OnDetaching();
            AssociatedObject.DataContextChanged -= FrameworkElement_DataContextChanged;
        }

        private void FrameworkElement_DataContextChanged(object sender, DependencyPropertyChangedEventArgs e)
        {
            SetViewModel(e.NewValue);
        }

        private void SetViewModel(object viewModel)
        {
            SetViewModelProperty(viewModel, PropertyName, PropertyValue);
        }

        private static void SetViewModelProperty(object viewModel, string propertyName, object propertyValue)
        {
            if (viewModel == null || propertyName == null) {
                return;
            }
            var info = viewModel.GetType().GetProperty(propertyName);
            if (info != null && CanAssignValue(propertyValue, info.PropertyType)) {
                info.SetValue(viewModel, propertyValue, null);
            }
        }

        private static bool CanAssignValue(object value, Type targetType)
        {
            if (value == null) {
                return !targetType.IsValueType || Nullable.GetUnderlyingType(targetType) != null;
            }
            return targetType.IsAssignableFrom(value.GetType());
        }
    }
}

然后像这样使用它:

<local:MyControl>
    <i:Interaction.Behaviors>
        <bb:SetViewModelPropertyBehavior PropertyName="Owner" PropertyValue="{x:Static local:Owners.ProjectOwner}" />
        <bb:SetViewModelPropertyBehavior PropertyName="AnotherProperty" PropertyValue="{StaticResource MyResourceKey}" />
    </i:Interaction.Behaviors>
</local:MyControl>

1 个答案:

答案 0 :(得分:3)

任何WPF绑定的目标都必须是DependencyProperty。源可以是DependencyProperty,实现INotifyPropertyChanged的CLR对象,或者只是一些对象。可以通过更改Binding.Mode属性来交换目标和源。

但在这种情况下,绑定中的一个项目是静态解析的属性(Owners.ProjectOwner)。因此,它不是DependencyProperty。因此,它只能作为来源出现。因此,您绑定到(目标)的内容必须是DependencyProperty。因此,它不能是视图模型的属性(假设您没有创建基于DependencyObject的视图模型,这将是a mistake)。

因此,您无法直接将VM上的属性绑定到静态属性。您可以编写一个附加行为来为您执行此操作。