Hi,
I have a checklistbox which those item have two Property [ Name, IsEnable ]
I want each checklistbox item have Property IsEnable=true so user can only select when IsEnable = true
<syncfusion:CheckListBox Margin="162,52,162,52" IsSelectAllEnabled="False" ItemsSource="{Binding FolderItems}"
x:Name="checkListBox">
<syncfusion:CheckListBox.DataContext>
<viewModel:FileFolderViewModel/>
</syncfusion:CheckListBox.DataContext>
<syncfusion:CheckListBox.ItemTemplate>
<DataTemplate>
<StackPanel Orientation="Horizontal">
<TextBlock FontWeight="Bold"
Foreground="SkyBlue"
Text="{Binding Name}"
IsEnabled="False"/>
</StackPanel>
</DataTemplate>
</syncfusion:CheckListBox.ItemTemplate>
</syncfusion:CheckListBox>