我可以对 WP7 上的只读项目列表使用什么 WPF 控件?
现在我使用列表框,但它允许用户选择我不想要的项目。有没有办法禁用选择或更合适的控件我可以使用?
现在我有这个:
<ListBox ItemsSource="{Binding Path=PersonNames}">
<ListBox.ItemTemplate>
<DataTemplate>
<StackPanel Orientation="Horizontal">
<TextBlock Text="{Binding Name}" FontSize="20"/>
</StackPanel>
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>
Right now I use a ListBox but that allows the user to select an item which I don't want. Is there a way to disable selecting or a more suitable control I can use?
Right now I have this:
<ListBox ItemsSource="{Binding Path=PersonNames}">
<ListBox.ItemTemplate>
<DataTemplate>
<StackPanel Orientation="Horizontal">
<TextBlock Text="{Binding Name}" FontSize="20"/>
</StackPanel>
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用
ItemsControl
,它是一个没有选择的基类。 (由于它不提供自己的ScrollViewer
如果您需要滚动,您可能需要添加一个(在模板中或在控件周围))Use an
ItemsControl
, it's a base class without selection. (As it does not provide its ownScrollViewer
you may need to add one (either in the template or around the control) if you need scrolling)请参阅
ListView
控制。See the
ListView
control.