我在哪里可以找到 ItemTemplate
/ListBox
等控件的默认 ListView
? MSDN 中没有关于此的任何内容。
<ListBox.ItemTemplate>
<DataTemplate>
<!--What's the default value of this?-->
</DataTemplate>
</ListBox.ItemTemplate>
最佳答案
来自 WPF Tutorial :
IE。默认应该是:
<ListBox.ItemTemplate>
<DataTemplate>
<TextBlock Text="{Binding}"/>
</DataTemplate>
</ListBox.ItemTemplate>
阅读有关 DataTemplate
的更多信息关于.net - ListBox/ListView 等控件的默认 ItemTemplate,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/23848488/