Greetings,
I am doing a custom control with the ribbon, and then add the custom control to a winForm. My form have the controlBox property to false to avoid the standard blue markee. Is there a way to include the controlbox buttons to the ribbon? and make it possible to move the form arround with the mouse?
Thanks in advance.
The toolbars manager does not support showing caption buttons or the caption bar when it is not placed in a Form. This would require a lot of manual work if you wanted to try to accomplish this. I would not recommend trying to do this. I would instead suggest trying to find a way to have the toolbars manager defined on the Form and have it interact with the custom control which will be placed on the Form.
Thanks for the answer! I will create the form instead of the control.