如何在不清除依赖项属性的情况下设置DataContext?

时间:2010-01-11 09:31:16

标签: wpf datacontext invalidation dependency-properties

我正在使用viewmodel模式,因此我的自定义用户控件的DataContext实际上是真实数据的viewmodel包装。

我的自定义控件可以包含自定义控件的分层实例。

我在真实数据的自定义控件中设置了DependencyProperty,希望在通过绑定设置数据时为该数据创建一个新的viewmodel,然后将用户控件的datacontext设置为新的viewmodel。但是,似乎设置DataContext属性会导致我的实际数据DependencyProperty变为无效并设置为null。任何人都知道解决这个问题的方法,或者说我应该使用viewmodels的正确方法吗?

修剪我正在尝试做的样本:

用户控件:

public partial class ArchetypeControl : UserControl
{
    public static readonly DependencyProperty ArchetypeProperty = DependencyProperty.Register(
      "Archetype",
      typeof(Archetype),
      typeof(ArchetypeControl),
      new PropertyMetadata(null, OnArchetypeChanged)
    );

    ArchetypeViewModel _viewModel;

    public Archetype Archetype
    {
        get { return (Archetype)GetValue(ArchetypeProperty); }
        set { SetValue(ArchetypeProperty, value); }
    }

    private void InitFromArchetype(Archetype newArchetype)
    {
        if (_viewModel != null)
        {
            _viewModel.Destroy();
            _viewModel = null;
        }

        if (newArchetype != null)
        {
            _viewModel = new ArchetypeViewModel(newArchetype);

            // calling this results in OnArchetypeChanged getting called again
            // with new value of null!
            DataContext = _viewModel;
        }
    }

    // the first time this is called, its with a good NewValue.
    // the second time (after setting DataContext), NewValue is null.
    static void OnArchetypeChanged( DependencyObject obj, DependencyPropertyChangedEventArgs args )
    {
        var control = (ArchetypeControl)obj;

        control.InitFromArchetype(args.NewValue as Archetype);
    }
}

viewmodel:

class ArchetypeComplexPropertyViewModel : ArchetypePropertyViewModel
{
    public Archetype Value { get { return Property.ArchetypeValue; } }
}

XAML:

<Style TargetType="{x:Type TreeViewItem}">
        <Style.Triggers>
            <DataTrigger Binding="{Binding ViewModelType}" Value="{x:Type c:ArchetypeComplexPropertyViewModel}">
                <Setter Property="Template" Value="{StaticResource ComplexPropertyTemplate}" />
            </DataTrigger>
        </Style.Triggers>
    </Style>

<ControlTemplate x:Key="ComplexPropertyTemplate" TargetType="{x:Type TreeViewItem}">
        <Grid>
            <c:ArchetypeControl Archetype="{Binding Value}" />
        </Grid>
    </ControlTemplate>

Cannot databind DependencyProperty的评论中提到了这个问题,但从未解决

1 个答案:

答案 0 :(得分:1)

通过这样做:

<c:ArchetypeControl Archetype="{Binding Value}" />

您正在将Archetype属性绑定到数据上下文中名为Value的属性。通过将数据上下文更改为新的ArchetypeViewModel,您可以有效地对绑定进行新的评估。您需要确保新的ArchetypeViewModel对象具有非null Value属性。

如果没有看到更多代码(具体来说,ArchetypeComplexPropertyViewModelArchetypePropertyViewModel的定义),我无法确切地说出原因是什么。