Does anyone know of a simple implementation of a checked combobox in WinForms? I haven’t been able to find anything when googling.
I want something that behaves like this windows scheduled task trigger edit:

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Here is what you want, I just coded this by myself
The concept is really simple, use a panel and add checkboxes onto it. Then
force the combo box to disable it’s drop down menu but still you can click on its down arrow. Use
DropDownandDropDownClosedevents of the combo box. When you make the combo box’s list down set panel’sVisibleproperty toTrue, hide it when you close the drop down of the combo box.