NDockingPanel caption size


https://www.nevron.com/Forum/Topic8217.aspx
Print Topic | Close Window

By Joël Golinucci - 11 Years Ago
Hello,

I'm trying to desing an application that will be used on a touch panel thin client over RDP. Therefore I would like to increase the NDockingPanels caption bar height as well as the docking buttons so that they will be easyier to work with via touch panel.

Where and how can I change these caption bar ?

Thank you for your answer,

Best regards,
Joël
By Joël Golinucci - 11 Years Ago
Up.

Is there any way to change the caption bar size on a NDockingPanel ?

Thanks for the help.
By Nevron Support - 11 Years Ago
Hello Joel,

All you need to do is to set NDockManager.CaptionStyle.AutomaticHeight to false and to set NDockManager.CaptionStyle.Height to the desired value:

manager.CaptionStyle.AutomaticHeight = false;
manager.CaptionStyle.Height = captionHeight;
By Joël Golinucci - 11 Years Ago
Hello,

Thanks a lot for your quick answer. It works perfectly.
I didn't thought of checking with the manager. I was trying on the docking panels directly !

Best regards,
Joël