ListBox / ListView等控件的默认ItemTemplate

时间:2014-05-24 18:43:44

标签: .net wpf xaml

我在哪里可以找到ItemTemplate / ListBox等默认ListView个控件? MSDN中没有任何关于此的内容。

<ListBox.ItemTemplate>
    <DataTemplate>
        <!--What's the default value of this?-->
    </DataTemplate>
</ListBox.ItemTemplate>

1 个答案:

答案 0 :(得分:4)

来自WPF Tutorial

  

数据模板为您提供了一个非常灵活且功能强大的解决方案,可以替换ListBox,ComboBox或ListView等控件中数据项的可视外观。

     

如果您未指定数据模板,WPF将采用仅为TextBlock的默认模板。

即。默认值应为:

<ListBox.ItemTemplate>
    <DataTemplate>
        <TextBlock Text="{Binding}"/>
    </DataTemplate>
</ListBox.ItemTemplate>

详细了解DataTemplate