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?
Share
The ribbon is supported out of the box in .NET 4.5. Add a reference to
System.Windows.Controls.Ribbonand 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.