当依赖项属性更改时,在UWP模板控件中更新UI

时间:2016-03-01 09:24:56

标签: c# xaml win-universal-app template-control

我希望模板控件根据依赖项属性动态生成不同的形状。控件如下所示:

<Style TargetType="local:ColorShape">
    <Setter Property="Template">
        <Setter.Value>
            <ControlTemplate TargetType="local:ColorShape">
                <ContentControl x:Name="shapeParent">
                </ContentControl>
            </ControlTemplate>
        </Setter.Value>
    </Setter>
</Style>

它具有形状的depdency属性: public ShapeType

ShapeType
{
    get { return (ShapeType)GetValue(ShapeTypeProperty); }
    set { SetValue(ShapeTypeProperty, value); }
}

public static readonly DependencyProperty ShapeTypeProperty =
    DependencyProperty.Register("ShapeType", typeof(ShapeType), typeof(ColorShape), new PropertyMetadata(ShapeType.Circle));

我使用OnApplyTemplate方法生成形状:

protected override void OnApplyTemplate()
{
    var shapeParent = (ContentControl)this.GetTemplateChild("shapeParent");
    var shape = GetShape(ShapeType);
    shapeParent.Content = shape;

    base.OnApplyTemplate();
}

我可以DataBind属性,它在我第一次创建控件时起作用:

<Controls:ColorShape Grid.Row="1" Width="200" Height="200" Stroke="Black" ShapeType="{x:Bind ViewModel.Shape, Mode=OneWay}" StrokeThickness="5" Fill="{x:Bind ViewModel.Color, Mode=OneWay}" />

但是,如果我在ViewModel中修改绑定属性,则会生成INotifyPropertyChange通知,但不会重新绘制模板控件

我尝试在模板控件的依赖项属性中添加一个回调,我可以看到它使用绑定到属性的新值刷新依赖项属性(在本例中为ViewModel.Shape),但它没有&# 39; t刷新UI(再也不要再调用OnApplyTemplate)。我尝试手动调用ApplyTemplate方法,事件OnApplyTemplate无法解雇。

1 个答案:

答案 0 :(得分:1)

生成模板时,

OnApplyTemplate仅被调用一次。只有在控件上更改模板时才会再次调用它。

您需要的是DependencyProperty上的PropertyChangedCallback

public int MyProperty
{
    get { return (int)GetValue(MyPropertyProperty); }
    set { SetValue(MyPropertyProperty, value); }
}

public static readonly DependencyProperty MyPropertyProperty =
        DependencyProperty.Register("MyProperty", typeof(int), typeof(ownerclass), new PropertyMetadata(0, OnPropertyChanged);

private static void OnPropertyChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)
{
    // Do what you need here
}

(您缺少的部分是new PropertyMetadata(...)的第二个参数。