Profile Picture

Tabbed Menu Bars

Posted By Brian J Warren 15 Years Ago
Author
Message
Brian J Warren
Posted 15 Years Ago
View Quick Profile
Junior Member

Junior Member (15 reputation)Junior Member (15 reputation)Junior Member (15 reputation)Junior Member (15 reputation)Junior Member (15 reputation)Junior Member (15 reputation)Junior Member (15 reputation)Junior Member (15 reputation)Junior Member (15 reputation)

Group: Forum Members
Last Active: 9 Years Ago
Posts: 26, Visits: 28

Hello,

I have a question about how to implement a special menu bar I encountered.

My project is a GUI interface to a financial API called VTTrader. The VTTrader API comes with it's own interface, and I want to approximate its look and feel.

Right now I'm working on the command bars. Screen01.jpg shows the VTTrader GUI menu. Command bars sit inside Groupers -- Tab Pages hold sets of Groupers.



Screen02.jpg show what I have so far. My problem is, I don't know how to set the Toolbars as children of the Groupers. I could only choose a tab page (as shown) or the form itself. Can you tell me how to do this?

A side question: how do you change the font size for the footer text in the Grouper? I'd like to increase the font to 10, which I can't do by changing the Font for the Grouper itself.

Thanks, Brian Warren



Angel Chorbadzhiev
Posted 15 Years Ago
View Quick Profile
Supreme Being

Supreme Being (142 reputation)Supreme Being (142 reputation)Supreme Being (142 reputation)Supreme Being (142 reputation)Supreme Being (142 reputation)Supreme Being (142 reputation)Supreme Being (142 reputation)Supreme Being (142 reputation)Supreme Being (142 reputation)

Group: Forum Members
Last Active: Last Month
Posts: 139, Visits: 184

Hello Brian,

To put the toolbar as a child in a NGrouper you need to add the toolbar in the NGrouper Controls collection:

nGrouper1.Controls.Add(nToolbar1);

The font size of the text in the NGrouper footer can be setup by setting Style.FontInfo property of the footer item:

nGrouper1.FooterItem.Style.FontInfo = new Nevron.UI.NThemeFontInfo("Tahoma", 10F, Nevron.GraphicsCore.FontStyleEx.Regular);

Best regards,

Angel.



Brian J Warren
Posted 15 Years Ago
View Quick Profile
Junior Member

Junior Member (15 reputation)Junior Member (15 reputation)Junior Member (15 reputation)Junior Member (15 reputation)Junior Member (15 reputation)Junior Member (15 reputation)Junior Member (15 reputation)Junior Member (15 reputation)Junior Member (15 reputation)

Group: Forum Members
Last Active: 9 Years Ago
Posts: 26, Visits: 28
Hello Angel,

Thank you very much -- both your directions worked perfectly.

Thanks, Brian



Similar Topics


Reading This Topic