vote up 0 vote down star

The CheckBox control exposes both boolean Checked and System.Windows.Forms.CheckState enum CheckState properties, which allow you to set the control to either checked, unchecked, or mixed state (Indeterminate enum value).

I want to set a ListView item's state to Indeterminate, but only the Checked property seems to be available. So, is there a way to set it to mixed, possibly by window messaging or similar tricks?

flag

75% accept rate

3 Answers

vote up 0 vote down

ListView does not have indeterminate state.

link|flag
I know it's not an exposed property in the Windows Forms control; I'm asking if it's possible any other way. – Factor Mystic Jun 26 at 6:16
vote up 0 vote down

Well, you can use the following workaround:

  1. Create state ImageList with 3 states (you can take create images using CheckBoxRenderer)
  2. Assign this image list to list view
  3. Then you need to handle OnMouseDown (or OnMouseClick) and OnKeyDown events and shift state images for needed list item

Of course you also need to write several helper methods to get checked state, etc. But in general this solution is relatively easy to implement.

Actually internal ListView implementation do the same, but this logic is hidden inside comctl32.dll.

link|flag
vote up 0 vote down

ObjectListView (an open source wrapper around .NET WinForms ListView) supports check boxes with mixed state.

Have a look at the Simple tab of the demo to see them in action.

(Having done the work, I have to say that it is not as easy as arbiter suggests)

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.