Visual Studio 11 开发者预览版中的 WPF 功能区?
我热衷于创建一个使用 WPF Ribbon 和 C# 的新程序。我使用的是 Windows 8 和 Visual Studio 11 开发者预览版(专业版),但是当我尝试安装 Microsoft 的工具包时,它没有执行任何操作。我做错了什么吗?
I am keen to create a new program that uses WPF Ribbon with C#. I am using Windows 8 and the Visual Studio 11 Developer Preview (Professional edition), however when I tried to install the toolkit from Microsoft it didn't do anything. I am doing anything wrong?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
.NET 4.5 中开箱即用地支持功能区。添加对< /代码>。在您的页面中放置一个
System.Windows.Controls.Ribbon
的引用,并更改页面的 xaml 以使用
而不是
,您就可以开始了。The ribbon is supported out of the box in .NET 4.5. Add a reference to
System.Windows.Controls.Ribbon
and change the xaml of your page to use a<RibbonWindow>
instead of a<Window>
. Put a<Ribbon>
in your page and you should be good to go.