views:

680

answers:

3

I came across this link today that offers a ToolStripProfessionalRenderer implementation for the Office 2007 look-and-feel.

From what I can tell, it would be fairly straightforward (albeit tedious) to customize this to support various other themes, such as the silver and black themes of Office 2007.

More specifically, I'd like to find a color table that matches Visual Studio 2008. Does anyone know where I might find this?

+1  A: 

Yes, tedious. You can find color settings in the MFC Feature Pack files, included with VS2008 SP1. There are 4 Office themes, they each have a style.xml file in a subdirectory of vc/atlmfc/include. Black, Blue, Silver and Aqua.

Hans Passant
+2  A: 

I found this a while back, and even have a bookmark for it: http://blogs.msdn.com/jfoscoding/articles/489637.aspx

I think this is what you're looking for.

hmemcpy
That's almost exactly what I'm looking for. I added the color table from your link to the Office2007Renderer project and used it instead of the default Office2007ColorTable. It's awfully close and gets me much further down the road!
Matt Davis
A: 

I posted about Office 2007 style when I was doing WinForms.

http://lextm.blogspot.com/2008/02/office-2007-style.html

Although Krypton does not ship a Visual Studio 2008 style, you should be able to customize as it is highly flexible.

Lex Li