我正在尝试在 .Net 4.5 框架上使用功能区控件开发 WPF 应用程序。据我所知,MSDN Ribbon Class现在已包含在 Net 4.5 框架中,因此,我不需要再添加它了。
但是当我尝试添加此代码时:
<Window x:Class="WpfApplication2.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">
<StackPanel>
<Ribbon>
</Ribbon>
</StackPanel>
</Window>
我收到以下错误。我错过了什么吗?
The tag 'Ribbon' does not exist in XML namespace 'http://schemas.microsoft.com/winfx/2006/xaml/presentation'.
编辑 :
using System.Windows.Controls.Ribbon;
也不起作用。
The type or namespace name 'Ribbon' does not exist in the namespace 'System.Windows.Controls' (are you missing an assembly reference?) c:\tmp\tst2\tst2\MainWindow.xaml.cs