I am keen to create a new program that uses WPF Ribbon with C#. I am using Windows 8 and the Visual Studio 11 Developer Preview (Professional edition), however when I tried to install the toolkit from Microsoft it didn't do anything. I am doing anything wrong?

link|improve this question

What do you mean by "didn't do anything"? Installer never showed any UI? Installer ran but nothing new appeared in the Toolbox? – Joe White Oct 20 '11 at 15:39
It installed OK, however the WPF Ribbon projects don't appear in VS11 and there aren't any controls in the toolbox either. – Programming Thomas Oct 20 '11 at 15:42
Given this is a question about a beta application (localized imho), I think your best bet is to post something on MS's forums about the preview. – Chris Lively Oct 20 '11 at 16:43
feedback

1 Answer

up vote 0 down vote accepted

The ribbon is supported out of the box in .NET 4.5. Add a reference to System.Windows.Controls.Ribbon and change the xaml of your page to use a <RibbonWindow> instead of a <Window>. Put a <Ribbon> in your page and you should be good to go.

link|improve this answer
Thanks! The problem arose because originally it didn't have any support but obviously this is fixed by being includes by default. – Programming Thomas Mar 30 at 6:11
feedback

Your Answer

 
or
required, but never shown

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