Questions tagged «multibinding»

4
如何将多个值绑定到单个WPF TextBlock?
我目前正在使用TextBlock以下方法绑定名为的属性的值Name: <TextBlock Text="{Binding Name}" /> 现在,我想将另一个属性绑定ID到same TextBlock。 是否可以将两个或多个值绑定到相同的值TextBlock?是否可以通过简单的串联来完成,例如Name + ID,如果不是,还可以如何实现?

4
如何在多重绑定中为1个绑定传递一个常量值?
我有多重绑定 <TextBlock> <TextBlock.Text> <MultiBinding Converter="{StaticResource myConverter}"> <Binding Path="myFirst.Value" /> <Binding Path="mySecond.Value" /> </MultiBinding> </TextBlock.Text> </TextBlock> 我想将一个固定值(例如“ 123”)传递给上述两个绑定之一。如何使用XAML做到这一点?
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.