对MultiBinding + StringFormat的输出应用(非多重)ValueConverter



是否有一种方法可以将(单个,而不是多个)ValueConverter应用于使用StringFormat(即在字符串被格式化后)的MultiBinding的输出。

它将相当于那段代码,在这段代码中,我使用了一个中间的折叠TextBlock来实现这个功能:

   <StackPanel>
        <TextBox x:Name="textBox1">TB1</TextBox>
        <TextBox x:Name="textBox2">TB2</TextBox>
        <TextBlock x:Name="textBlock" Visibility="Collapsed">
            <TextBlock.Text>
                <MultiBinding StringFormat="{}{0}{1}">
                    <Binding ElementName="textBox1" Path="Text"/>
                    <Binding ElementName="textBox2" Path="Text"/>
                </MultiBinding>
            </TextBlock.Text>
        </TextBlock>
        <TextBlock Text="{Binding ElementName=textBlock,
                   Path=Text, Converter={StaticResource SingleValueConverter}}" />
    </StackPanel>

这是一个你想要的hack:

public static class Proxy
{
    public static readonly DependencyProperty TextProperty = DependencyProperty.RegisterAttached(
        "Text",
        typeof(string),
        typeof(Proxy),
        new PropertyMetadata(string.Empty));
    public static void SetText(this TextBlock element, string value)
    {
        element.SetValue(TextProperty, value);
    }
    [AttachedPropertyBrowsableForChildren(IncludeDescendants = false)]
    [AttachedPropertyBrowsableForType(typeof(TextBlock))]
    public static string GetText(this TextBlock element)
    {
        return (string) element.GetValue(TextProperty);
    }
}

<StackPanel>
    <TextBox x:Name="textBox1">TB1</TextBox>
    <TextBox x:Name="textBox2">TB2</TextBox>
    <TextBlock Text="{Binding Path=(local:Proxy.Text), 
                              RelativeSource={RelativeSource Self}, 
                              Converter={StaticResource SingleValueConverter}}">
        <local:Proxy.Text>
            <MultiBinding StringFormat="{}{0}{1}">
                <Binding ElementName="textBox1" Path="Text" />
                <Binding ElementName="textBox2" Path="Text" />
            </MultiBinding>
        </local:Proxy.Text>
    </TextBlock>
</StackPanel>

如果您查看MSDN上的MultiBinding.Converter属性页面,您将看到可以MultiBinding提供Converter。然而,它不是一个正常的IValueConverter,而是需要一个IMultiValueConverter。它可以这样使用:

<TextBlock x:Name="textBlock" Visibility="Collapsed">
    <TextBlock.Text>
        <MultiBinding StringFormat="{}{0}{1}" Converter="{StaticResource Converter}"
            ConverterParameter="SomeValue">
            <Binding ElementName="textBox1" Path="Text"/>
            <Binding ElementName="textBox2" Path="Text"/>
        </MultiBinding>
    </TextBlock.Text>
</TextBlock>

IMultiValueConverter实现的示例可以在链接页面中找到

相关内容

  • 没有找到相关文章

最新更新