1

我对一个画布有不同的 ControlTemplates:

<Application.Resources>
    <ControlTemplate x:Key="Control1" />
    <ControlTemplate x:Key="Control2" />
</Application.Resources>

我想通过我的 viewmodel 属性更改其中一个,如下所示:

private string _template = "Control1";
public string Template
        {
            get
            {
                return _template;
            }
            set
            {
                if (!string.IsNullOrEmpty(value))
                {
                    _template = value;
                    OnPropertyChanged("Template");
                }
            }
        }

最后在我看来使用它:

<UserControl Template="{StaticResource {Binding Template}}" />

但它不起作用,我该如何解决它?谢谢

4

1 回答 1

2

您可以尝试使用 DataTriggers

<UserControl>
<UserControl.Style>
<Style TargetType="{x:Type UserControl}">
<Setter Property="ControlTemplate" value="{StaticResource Control1}"/>
<Style.Triggers>
<DataTrigger Binding="{Binding Template}" Value ="Control1">
<Setter Property="ControlTemplate" value="{StaticResource Control1}"/>
</DataTrigger>
<DataTrigger Binding="{Binding Template}" Value ="Control2">
<Setter Property="ControlTemplate" value="{StaticResource Control2}"/>
</DataTrigger>
</Style.Triggers>
</Style>
</UserControl.Style>
</UserControl>
于 2013-09-17T15:11:59.747 回答