在WPF应用程序中,我使用SurfaceListBox
(xmlns:Custom =“http://schemas.microsoft.com/surface/2008”)
控制以显示元素列表。
SurfaceListBox
绑定到
ObservableCollection<Category> _categoriesDot = new ObservableCollection<Category>();
Category
有一个属性:
public bool IsSelectable {get; set;}
当_categoriesDot
中的项目IsSelectable
为false时,我无法在SurfaceListBox
中选择该项目。
您能否提供一份代码示例?
答案 0 :(得分:0)
在填充_categoriesDot集合时,仅筛选可选类别是一个不错的选择。
OR
尝试设置Focusable属性。
Focusable="{Binding Path=IsSelectable}"