Microsoft Ribbon for WPF (4.0.0.11019) - wpf

I am using the latest WPF Ribbon control downloaded from http://www.microsoft.com/downloads/en/details.aspx?FamilyID=2bfc3187-74aa-4154-a670-76ef8bc2a0b4&displaylang=en
In Windows XP, the Ribbon application window’s title bar looks like from Windows 98… or like from console window. How can I improve the appearance of tittle bar.

Answered by a Microsoft Consultant:
The RibbonWindow ships with three templates as of the October 2010 release - Classic, Aero Basic, and Aero with glass. On XP's Luna theme, we fall back to displaying the Classic look for the RibbonWindow. It should be fairly easy to retemplate RibbonWindow to achieve the native XP look - use our RibbonWindow templates in the Ribbon Source and Samples MSI as an example. If we get feedback from several customers that the Luna theme is a top request, we will definitely consider including that for our next release.

Related

How to make a flat ribbon look like File Explorer Windows 8.1 in Windows Forms C#?

I want to create ribbon tab (flat style - look like File Explorer Windows 8.1 and Office 2013) in my windows form C# project. Please help me! I try using OfficeRibbon with dll file (https://officeribbon.codeplex.com/) but it only it only Office 2007 Ribbon. Office 2013 is flat style but it doesn't work.
Use DevExpress Ribbon .This Tool Provide Ribbon form MDI with document manager and lot of customized controls and Skins for windows form .
The OfficeRibbon control's office 2013 style is almost there, straight out of the box:
You might need to apply your own theme to get it similar in color to Windows 8. More on theming HERE

WPF Ribbon changes title bar style in XP

[EDITED]
After several tries, I found out it was the Microsoft WPF Ribbon that causes the title bar style not rendering correctly.
Application without Ribbon in XP:
Application with Ribbon in XP:
I have already set the theme to be XP style. Still not fix. It is a bug in Microsoft Ribbon or am I missing something? On Window 7, on the other hand, renders OK.
Develop on WPF C# .NET 4, VS2010.
Why do you care? this is a user setting to have Aero enabled or not in Vista or 7 and theming enabled or not in XP like in 2 and 3 pictures you sent.
In general you should ignore this. Office 2007 and 2010 with ribbon UI renders the same but because ribbons are skinning the application windows completely.
My suggestion is to either use skins and do the same or simply ignote this because if I use Vista with Aero enabled I would not like your App to look like classic Win2000 applications.
This is anyways an issue with the window title bar as it will use the default theme of the OS you are using.
I suggest you to neutralize the style by implementing a custom window style that takes the windows 7 look n feel for all windows ion your applications. Have a look at the MessageBox control from latest extended WPF toolkit.
It has a windows 7 style themse that looks exactly same on all the above OS if you use
Window.AllowsTransparency="False"
Window.WindowStyle="None"
Window.Style="{StaticResource Windows7WindowStyle}"

WPF Official Ribbon Control Themes

Can you help me please finding themes for the Microsoft Ribbon for WPF October 2010 release?
I want to change the default blue theme.
This is the best Fluent Ribbon control I know for WPF
Supports everything (and re-styling, black/blue/silver are included so far)
There are no themes for the Microsoft Ribbon for WPF October release, you have to come up with your own styles.

Ribbon Control showing Windows 2000 Minimise/Maximise/Close buttons

I'm trying to get a standard Ribbon Control working using VS 2010 on Windows XP. I've downloaded/installed the latest version of the Ribbon Control (October 2010) from the Microsoft Download Centre. From here I created a new project with the "WPF Ribbon Application" template.
The control itself works fine, but it seems to apply the Windows 2000 theme to the Minimise/Maximise/Close buttons, as can be seen in this screenshot:
I've tried changing the main window style to Aero in app.xaml (no effect on top right controls). I also tried (and failed) to set the Ribbon style to Office2007 (apparently the most recent version of the ribbon control has removed this feature).
Did I install something incorrectly? I installed both the *.msi files in the link. Am I missing a reference?
Any help would be much appreciated.
I figured it out, I know this is an old question but he this pops up in Google so for all the people that will see this in the future!
ANSWER DOWN HERE!!!
https://stackoverflow.com/a/21675624/3239917
Instead of the tags <ribbon:RibbonWindow on the beginning of the xaml,
Make it <Window .
Then in your class delete your : RibbonWindow
After that go back to your XAML, and change the Ribbon margin to -22 :
<r:Ribbon x:Name="Ribbon" prism:RegionManager.RegionName="RibbonRegion" Margin="0,-22,0,0" >

Hide/unhide ribbon for Microsoft RIbbon for WPF release

MS officially released MS Ribbon for WPF. This release doesn't support theming, it comes with a default blue theme, Office 2010 look&feel. Office 2010 has a button that allows users to hide/unhide the ribbon, but the released version of ribbon doesn't has one. Is it implemented ? How can I add one?
Can you doubleclick a tab to minimize the ribbon in the new release?
Kinda hidden, but been that way since office 2007, and appears to work in Windows 7 paint, etc.
When I right click on the ribbon, I get the option to Minimize the Ribbon, which mostly hides the ribbon. Is that what you're talking about? Here's a screencast to demonstrate. I'm using the latest Ribbon release.

Resources