标签: c# wpf listview selection
我遇到问题,找不到在我的WPF应用程序的listview中创建单个选择行的解决方案。
我该怎么做?
答案 0 :(得分:37)
SelectionMode ="Single"?
SelectionMode
="Single"
答案 1 :(得分:23)
上面的答案是ListBox,而不是ListView。
对于ListView,您将MultiSelect属性设置为False(可以通过Designer完成)。
答案 2 :(得分:2)
WPF中的ListView具有 SelectionMode =“Single”。