DataTemplate
我只是想为我定义一个自定义ListView
,以便显示一个类的一些数据。在早期的项目(c#、.net 3.5、wpf)中,我有这样的东西:
<Style x:Key="Custom_ComboBox_Style" TargetType="{x:Type ComboBox}">
<Setter Property="ItemTemplate">
<Setter.Value>
<DataTemplate>
<TextBlock>
<TextBlock.Text>
<MultiBinding StringFormat="{}{0} {1} Members">
<Binding Path="Name"/>
<Binding Path="MemberCount"/>
</MultiBinding>
</TextBlock.Text>
</TextBlock>
</DataTemplate>
</Setter.Value>
</Setter>
不幸的是,这在我当前的 WinRT 项目中不起作用:(我搜索了谷歌,发现 WinRT 已经没有MultiBinding
了。直到现在我找不到任何解决这个问题的方法。任何想法如何解决这个问题并实现和上面DataTemplate
的一样吗?
提前致谢!