Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ListView複数TextBlockの s が含まれています。このようなものを持つことは可能ですか?
ListView
TextBlock
TextBlock x:Name="AuthorInfo" Text="Author: {Binding data.author}"
または、それが設定されているときに data.author に追加するだけの方がよいでしょうか?
XAML の場合は、StringFormat を使用できます
<TextBox Text="{Binding Path=data.author, StringFormat=Author: {0}}"/>