I have an instance of System.Windows.Forms.CheckedListBox
which displays a list of tick boxes and I have some other System.Windows.Forms
objects in my application. I would like to, depending on what the user selects using the other System.Windows.Forms
items, show or hide different items in the System.Windows.Form.CheckedListBox
. How could I achieve this?
Note: this is for a windows desktop application, not a webpage.