3

我有一个ListView与多个TextBlocks 。有可能有这样的东西吗?

TextBlock x:Name="AuthorInfo" Text="Author: {Binding data.author}"

还是在设置时将其添加到 data.author 会更好吗?

4

1 回答 1

3

如果是 XAML,您可以使用 StringFormat

<TextBox Text="{Binding Path=data.author, StringFormat=Author: {0}}"/>
于 2012-11-03T22:43:58.187 回答