Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I make my apps look like Office 2013 and VS 2012?

I want to make my apps look like Office 2013 and VS 2012. The new white, streamlined look. Also with the solid color toolbar icons. Is there a way to make my apps look that them with VB 2010?

like image 844
Sega dude Avatar asked Aug 30 '12 00:08

Sega dude


1 Answers

Look into the Windows Presentation Foundation (WPF).

To recreate the new tool bat in .NET 4+ you can use the Ribbon (WPF) Control. If you're targeting earlier versions you will have to create your own ribbon control or find a 3rd party solution.

-edit- more info...

In order to help design your application, I suggest you get a copy of Microsoft Expression Blend. It will make working with WPF (XAML) much easier. The the built in editor that comes with VS 2010 isn't even close to as good. The VS 2012 designer is suppose to be better, although I haven't tried it myself.

like image 137
jColeson Avatar answered Nov 01 '22 11:11

jColeson