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 Rory,
Glad to hear! Have a great day.
Michael, that worked. Thank you.
I attached a new project built with VS 2010 Infragistics 13.2
Let me know if you have any questions regarding this matter.
Michael,
The VS solution will not open for me....literally nothing happens when I try to open it. Is it VS 2010?
Meanwhile, I tried to adapt the code to my project, and the line is still there.
-Rory
Hello,
I have identified the blue line as the TabLineUIElement. This can be removed by using a Draw Filter and applying the following if check within the GetPhasesToFilter method.
if (drawParams.Element is TabLineUIElement) return Infragistics.Win.DrawPhase.BeforeDrawBorders; else return Infragistics.Win.DrawPhase.None;