博客园  :: 首页  :: 订阅 订阅  :: 管理

关于 Fluent Ribbon Control Suite

Posted on 2010-08-13 19:13  卞红军  阅读(3368)  评论(0编辑  收藏  举报

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:

<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>