Native CheckedListBox?

Bil*_*eal 2 c c++ windows

在.NET中,有非常有用的System.Windows.Forms.CheckedListBox类.

Windows Common Controls中的等价物是什么?(如果有的话)

And*_*ell 5

将列表视图转换为带有复选框的列表视图.如果您希望它类似于ListBox,则只使用1列.

ListView_SetExtendedListViewStyle (handle, LVS_EX_CHECKBOXES | LVS_EX_FULLROWSELECT);
Run Code Online (Sandbox Code Playgroud)