Jeroen
Jeroen

Reputation: 16865

Windows GUI Library for Office 2013-like windows?

Visual Studio 2012 and Office 2013 have in my opinion an amazing GUI. Are they built with some Microsoft library which is publicly accessible and usable; if so which one?

Upvotes: 6

Views: 2003

Answers (2)

Monstieur
Monstieur

Reputation: 8112

There is none. It's a custom Win32 C++ application with a ton of code.

The closest you can get without inventing your own controls is to create a Win32 application that uses the Windows Ribbon Framework. This is only officially accessible through plain Win32. The MFC and WPF versions are non-native look alikes. There is a .NET Windows Forms wrapper for the native Win32 Ribbon.

Upvotes: 4

Liam Flaherty
Liam Flaherty

Reputation: 337

If you are after a library to duplicate the ribbon functionality in your own application you could consider using WPF and use the Fluent Ribbon Control Suite. This is almost identical to the ribbon found in Office 2010 in my opinion.

Upvotes: 1

Related Questions