Is it possible to disable the checkbox of the particular ListViewItem?
I found code to check and uncheck the ListViewItem.
but give me the solution for
why does the Enable Property for ListViewItem does not exist?
I found code to check and uncheck the ListViewItem.
Code:
ListViewItem lvi = new ListViewItem("One"); lvi.Checked = false;
Code:
lvi.Enable = false;
Comment