Where can I find tutorials or steps to develop WPF Ribbon based applications? The Microsoft page, Microsoft Ribbon for WPF October 2010 doesn't provide any documents for the code samples. For example it has one code sample called RibbonWindowWord.xaml :
<ribbon:RibbonWindow x:Class="RibbonWindowSample.RibbonWindowWord"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:ribbon="http://schemas.microsoft.com/winfx/2006/xaml/presentation/ribbon"
xmlns:local="clr-namespace:RibbonWindowSample"
Title="RibbonWindowWord" Height="600" Width="1000"
Closing="RibbonWindow_Closing">
<local:UserControlWord x:Name="WordControl" />
</ribbon:RibbonWindow>
what is the programming methodology here? The channel9 pages which shows tutorials on Ribbon based interfaces are all for c++ programmers. I'm looking code for C# programmers. Can someone specify resources and tell the differences between the previous WPF codeplex release : http://wpf.codeplex.com/wikipage?title=Southridge%20Lab
channel9 pages http://channel9.msdn.com/blogs/yochay/a-lap-around-windows-7-new-scenic-ribbon http://channel9.msdn.com/Blogs/yochay/Windows-7-Ribbon-Markup-Overview