如何将Ribbon添加到表单应用程序

时间:2015-01-05 16:30:59

标签: c# ribbon

我正在使用C#和VS2013。我想以新的空白格式创建一个功能区。

我正在使用的文档在这里: http://msdn.microsoft.com/en-us/library/ff799534(v=vs.110).aspx

我下载并安装了: http://www.microsoft.com/en-us/download/details.aspx?id=11877,但即使安装完成后我仍未在工具箱中看到任何功能区组件。

我做错了什么?或者我如何建立一个功能区?

1 个答案:

答案 0 :(得分:-1)

首先在wpf 4.5项目中添加对System.Windows.Controls.Ribbon dll的引用。

然后你就可以像这样写你的xaml代码了

<Window x:Class="WpfApplication1.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        Title="MainWindow" Height="350" Width="525">
    <Grid>
        <Ribbon>
            <!-- other inner controls goes here -->           
        </Ribbon>
    </Grid>
</Window>