2

我需要将按钮绑定到控件模板。XAML 看起来像这样:

Button Template="{Binding Status, Converter={StaticResource StatustoTemplate}}"

转换器(StatustoTemplate)随着状态(它是一个整数,但很高兴它是一个字符串)的变化运行良好:

public class StatustoTemplate : IValueConverter
{
    public object Convert(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)

        {
           if (value==1)
           {
               return ControlTemplateName1;
           }
           if (value==2)
           {
               return ControlTemplateName2;
           }
        }
}

现在,我可以以什么格式发回ControlTemplate1ControlTemplate2?让我们假设ControlTemplate1ControlTemplate2是 XAML 中定义的有效控制模板。我现在需要返回一个 ControlTemplate - 但是如何设置它?

4

3 回答 3

1

我的首选方法是使用带有 DataTriggers 的 Style 来切换模板,无需转换器

<Style TargetType="Button" x:Key="StatusButton"> <!--set BasedOn if there is a base Style-->
   <Style.Triggers>
       <DataTrigger Binding="{Binding Status}" Value="1">
           <Setter Property="Template" Value="{StaticResource ControlTemplateName1}"/>
       </DataTrigger>

        <DataTrigger Binding="{Binding Status}" Value="2">
            <Setter Property="Template" Value="{StaticResource ControlTemplateName2}"/>
        </DataTrigger>
    </Style.Triggers>
</Style> 

然后应用此样式:

<Button Style="{StaticResource StatusButton}"/>
于 2016-10-24T09:14:10.460 回答
0

我有一个MarkupExtension可能对你有用的。它正在获取由 .xaml 定义Resources的xaml ResourceKey

一:抽象类StyleRefExtension:

public abstract class StyleRefExtension : MarkupExtension
{
    protected static ResourceDictionary RD;
    public string ResourceKey { get; set; }

    public override object ProvideValue(IServiceProvider serviceProvider)
    {
        return ProvideValue();
    }

    public object ProvideValue()
    {
        if (RD == null)
            throw new Exception(
                @"You should define RD before usage. 
            Please make it in static constructor of extending class!");
        return RD[ResourceKey];
    }
}

第二:类实现为 StyleRefExt

public class StyleRefExt : StyleRefExtension
{
    static StyleRefExt()
    {
        RD = new ResourceDictionary
             {
                 Source = new Uri("pack://application:,,,/##YOUR_ASSEMBLYNAME##;component/Styles/##YOUR_RESOURCE_DICTIONARY_FILE##.xaml")
             };
    }
}

只需将 ##YOUR_ASSEMBLYNAME##替换为您的程序集的名称,并将##YOUR_RESOURCE_DICTIONARY_FILE##替换为您的文件名ResourceDictionary(位于文件夹中Styles)。

Converter应该是这样的:

public object Convert(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
{
    if (value==1) {
        StyleRefExt sr = new StyleRefExt {ResourceKey = "ControlTemplateName1"};
        return sr.ProvideValue();
    }
    if (value==2) {
        StyleRefExt sr = new StyleRefExt {ResourceKey = "ControlTemplateName2"};
        return sr.ProvideValue();
    }
}
于 2016-10-24T05:38:39.220 回答
0

转换器很难找到 XAML 中定义的资源。我通常定义一个具有两个定义的控件模板并使用Visibility. 该代码只是一个简短的示例。

XAML

<Window>
    <Window.DataContext>
        <local:MainWindowViewModel/>
    </Window.DataContext>
    <Window.Resources>
        <ResourceDictionary>
            <local:MyConverter x:Key="MyConverter"/>
            <ControlTemplate x:Key="template">
                <Grid>
                    <Grid Visibility="{Binding Status, Converter={StaticResource MyConverter}, ConverterParameter=1}">
                        <TextBox Text="1"/>
                    </Grid>
                    <Grid Visibility="{Binding Status, Converter={StaticResource MyConverter}, ConverterParameter=2}">
                        <TextBox Text="2"/>
                    </Grid>
                </Grid>
            </ControlTemplate>
        </ResourceDictionary>
    </Window.Resources>
    <Grid>
        <Button Template="{StaticResource template}"/>
    </Grid>
</Window>

转换器

public class MyConverter : IValueConverter
{
    public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
    {
        return ((string)parameter == "1") ? Visibility.Visible : Visibility.Collapsed;
    }

    // ConvertBack
}
于 2016-10-24T05:34:12.100 回答