English 中文(简体)
清单Box.ItemsSource的显示特性
原标题:Display properties of the ListBox.ItemsSource
  • 时间:2009-11-02 02:22:26
  •  标签:
最佳回答

你有两种选择。

最简单的方法是建立。 显示成员Paths. ListBox到“Title”。

如果你不仅要确定所展示的内容,还要说明显示的那种控制类型,那么你就会确定名单Box sItemTemplate

就你的目标而言,我建议第一个选择。

问题回答

可在<代码>ItemTemplate上建立,<代码>ListBox:

<ListBox ItemSource="{Binding}">
  <ListBox.ItemTemplate>
    <DataTemplate DataType="tfs:WorkItem">
      <StackPanel>
        <TextBlock Text="{Binding Title}" />
        <!-- Others -->
      </StackPanel>
    </DataTemplate>
  </ListBox.ItemTemplate>
</ListBox>




相关问题
热门标签