简单的 WPF 项目源代码控制
这感觉像是一个愚蠢的问题,但是 WPF 是否有一个简单的控件仅显示项目集合?我目前正在使用列表框来显示用户控件的集合,但不需要选择元素,并且突出显示实际上会分散注意力。我可以禁用突出显示,但如果存在更简单的控件,这似乎是额外的工作。我不需要跟踪所选项目。
基本上,我想要一个堆栈面板,我可以为其定义视图模型的项目源。这样的事存在吗?
This feels like a stupid question, but is there a simple control for WPF that just displays a collection of items? I am currently using a ListBox to display a collection of usercontrols, but the selection element is not needed and the highlighting is actually a distraction. I could disable the highlighting, but this seems like extra work if a simpler control exists. I don't need to track the selected item.
Basically, I want a stackpanel that I can just define an itemssource of viewmodels for. Does such a thing exist?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 ItemsControl - 它几乎正是您所寻找的
You can use an ItemsControl - it's pretty much exactly what you are looking for