Hello,
I am a registered user of NetAdvantage for WinForms 8.1.20081.1000.
I am pretty sure it is possible to have a control with a drop-down list of checkboxes, just like the language filter in MSDN or in the local help of Infragistics.But I cannot find out how to set up this control, which would be very useful to me !
Thank you in advance for your answer !
Regards,
Julien Fischer
You can emulate most of the CheckedListBox functionality using the WinListView control. Set the View property to 'List', set UltraListView.ViewSettingsList.MultiColumn to false, and UltraListView.ViewSettingsList.CheckBoxStyle to 'CheckBox'.
You can use a DropDownEditorButton to have the WinListView appear on a dropdown, by assigning it to the button's Control property
Hi,
Thanks for thr answer it help me as well.
I wonder if I can use this control WinListView for a tree view I have check box which need to have subitems with checkbox as well, any suggestions?
There is no need to do that; the Infragistics.Win.UltraWinTree.UltraTree control supports the display of checkboxes; set the UltraTree.Override.NodeStyle property to CheckBox/TriStateCheckBox.