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