I have been using WPF for some time now and I am trying to reproduce some of the nifty UI features of their office suite. Although very easy in WPF, I am wondering how it could be done using MFC feature packs (I might have to use it instead, since my company has not yet approved the use of WPF). Since the Fluent UI was introduced with Office 2007, I am wondering if Microsoft actually uses WPF in anything else than VS2010 or Expression Blend and particularly in Office 2010. I hope that this question is not off topic.

link|improve this question

feedback

3 Answers

up vote 4 down vote accepted

As far as I know it does not use WPF in any way. In fact much of it is still written in C++. Really the only "big" applications Microsoft has released in WPF are Visual Studio 2010 and Expression Blend.

link|improve this answer
feedback

Office 2010 does not use WPF. In fact, it doesn't use MFC either. Office has traditionally used a custom UI toolkit, and this was true even before the Ribbon came into being. However, you only need one major first-party application to secure the viability of WPF as a UI platform. This is especially true when that application happens to be Visual Studio, since tens of thousands of Microsoft employees use Visual Studio every day.

But that doesn't mean that WPF is the best UI technology to use with the Ribbon. The Microsoft WPF Ribbon handles a lot of corner cases incorrectly, as do all the major commercial managed-code Ribbons that I've tested (WPF or Winforms). It is very hard to duplicate the Office Ribbon -- there are a lot of subtleties that are difficult to anticipate and only turn up when users run into corner cases.

The Office Ribbon took over 200 man-years of work and was exercised by tens of thousands of beta testers. (Jensen Harris estimated at UX09 that the Office UI team numbered some 15 PMs, 30 developers, 30 testers, along with half a dozen designers and UI researchers.) It's the best-tested Ribbon out there, but unfortunately it's one that developers outside Microsoft can't use.

The second most reliable ribbon framework is probably the Windows 7 ribbon, which is used by Paint and WordPad. This one is available in the Windows 7 SDK, and has been backported to Vista. Native code and GDI, so it's targeted towards C++ developers. Note that it's also not tied into MFC.

link|improve this answer
feedback

You do realize WPF (with the .NET framework) is just a layer over win32 and com (direct2d, etc), all of which can be accessed from plain old C++, not to mention MFC. They already had all their ribbon code in C++ from 2007, so making the 2010 interface isn't hard.

To answer the question you think you're asking, no, Office doesn't use WPF. Only Visual Studio uses it.

link|improve this answer
I know it is a layer over directx and win32. I guess, I am trying to understand why they wouldn't make use of WPF in successful product as a statement to convince developers to move to that technology, instead of implementing everything by themselves. – zaladane May 9 '11 at 19:39
Because they'd have to rewrite everything from scratch. Rewriting VS2010 was probably enough for a while for them... – Blindy May 9 '11 at 19:41
WPF is definitely NOT a layer over Win32 (but it does use DirectX). Windows Forms was a layer over Win32... In WPF, the only dependencies on Win32 are the window itself (with is just one specific implementation of PresentationSource), and some system dependencies like the OpenFileDialog. – Thomas Levesque May 9 '11 at 20:16
1  
@Thomas, how is that a not? The window parts are win32 and the rest is com stuff, exactly like I said above. – Blindy May 9 '11 at 20:18
3  
The Window itself is Win32 only because it needs to be displayed in Windows; everything that is rendered in the window has nothing to do with Win32, the controls don't have a handle like in WinForms, and they're not painted by the system. – Thomas Levesque May 9 '11 at 20:22
show 3 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.