Hello Khaled,
To put a check box in a menu bar you can use NControlHostCommand control.
This is special type of command that allows you to display an arbitrary control in it.
Here is a small example:
NMenuBar
menuBar = new NMenuBar(); NControlHostCommand controlHost = new NControlHostCommand();NCheckBox checkBox = new NCheckBox();checkBox.Text =
"Check Box";controlHost.SetControl(checkBox);
menuBar.Commands.Add(controlHost);
I hope it will help you to setup your check box command.
Regards,
Angel.