Multibinding as resource in XAML

♀尐吖头ヾ 提交于 2019-12-12 07:17:17

问题


Is it possible (if yes how), to add multivaluebinding expression into resource.

I have a Multivalue binding, that takes 2 separate binding, and converter parameter in one of those binding.

I have to use this binding to 5 Different items, and those binding tags differ only in converter parameter. Rest everything is same.

I would to avoid repetition of multibinding boilerplate tags.


回答1:


Easy way of seeing if something works: TRY IT!

    <Style TargetType="Button">
        <Setter Property="Content">
            <Setter.Value>
                <MultiBinding Converter="{StaticResource OmgLolzConverter}">
                    <Binding Path="One" Converter="{StaticResource CakeConverter}"/>
                    <Binding Path="Two" Converter="{StaticResource CakeConverter}"/>
                </MultiBinding>
            </Setter.Value>
        </Setter>
    </Style>

Works fine.



来源:https://stackoverflow.com/questions/14701391/multibinding-as-resource-in-xaml

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!