Getting the rounded Office 2007 Style form…

[Infragistics] Andrew Flick / Tuesday, February 6, 2007

If you’ve ever wanted to get that cool rounded form style that you see displayed with our ribbon, but you don’t want to use the ribbon it’s really quite easy to achieve.  (Actually, it’s just a simple property setting.)  The code is as follows:

ultraToolbarsManager1.FormDisplayStyle = Infragistics.Win.UltraWinToolbars.FormDisplayStyle.RoundedSizable;

And of course if you want to change the color to one of the other Office 2007 themes simply set the following property:

Infragistics.Win.Office2007ColorTable.ColorScheme = Infragistics.Win.Office2007ColorScheme.Black;

After a couple quick property settings you have a nice rounded form with your existing menu-based application.  Enjoy…

Rounded Form