Fluent Ribbon Control Suite 是CodePlex开源项目,下面是其主页链接:http://fluent.codeplex.com/

先下载Fluent Ribbon Control Suite 1.3.zip,里面有可以添加到你的项目的程序集和与使用文档配套讲解的代码示例(Samples),还有一个可以直接查看使用效果的例子。

学习时打开使用文档运行Samples项目即可。

五秒钟快速理解:

RibbonOverview.png
The basic XAML syntax can be:


?
1
2
3
4
5
6
7
8
9
10
<Fluent:Ribbon>
<Fluent:RibbonTabItem Header= "Home" >
<Fluent:RibbonGroupBox Header= "Clipboard" >
<Fluent:SplitButton Text= "Paste" Icon= "Images\Paste.png" LargeIcon= "Images\PasteLarge.png" >
...
</Fluent:RibbonGroupBox>
<Fluent:RibbonGroupBox x:Name= "Font" ....
</Fluent:RibbonTabItem>
...
</Fluent:Ribbon>