How to disable some checkboxes while loading the application using xamcomboeditorsince we have IsChecked in combo box ....similarly do we have anything in xamcomboeditor and strictly not like checkboxvisibility.since checkboxvisibility set the checkboxes to hidden but i need to disable while choosing dropdown.
I need something like below image using XamComboEditor.
Please help me on this
Hello,
Thank you for posting in our forums!
You can disable the combo's items with the IsEnabled property. You can see a code snippet example below.
foreach (ComboEditorItem item in combo.Items) { item.IsEnabled = false; }
Please let me know if you need further assistance with this.
Hi Michael,
Can you give me a sample code for the above problem instead of snippet.
Thanks,
Nirmal
Hi Nirmal,
Please find the attached sample below. I handle the DropDownOpening event to iterate over the items.
If you have any further questions or concerns with this, please let me know and I will be glad to help.
6574.XamComboEditor_DisableCheckbox.zip