I'm using an Infragistics.Win.UltraWinToolbars.UltraToolbarsManager (volume 13.2), and I have it setup so that I'm not using the ribbon -- just the application menu. I am trying to modify the height of the ribbon tab area that remains which, by default, is an empty bar that is approximately 25 pixels high.Could someone please help me to modify the height of that area? I figure it requires a draw filter, but I'm not quite sure how to do it.
Hello,
This blue line is typically drawn and used as a divider between tools and sections for the ToolbarsManager. There is also one included when using a SegmentedStateButton for a PopupMenuTool.
Try turning UseOSThemes to false to see if the color is coming from the operator system themes.
Hi Alan,
I'm still having trouble with this. When I set the minimum size to, say, 65.
There is a light-blue line in the middle. How can I get rid of that?
Yes you can just set the MinimumSize:
this._Form1_Toolbars_Dock_Area_Top.MinimumSize = new Size(0, 150);
While this resizes the control, there will be nothing in that area unless you use a draw filter or a creation filter to add your own content.
Let me know if you have any questions with this matter.
Could I just set the minimum size of that area in a similar way?
Thanks Alan. How would I increase the height of the area in question instead of decreasing it?