我已经在Visual Studio 2017中为Windows Classic Desktop创建了一个新的WPF应用程序。
我试图找到如何添加功能区的方法,但是我发现与Visual Studio的旧版本有关,在这里似乎不起作用,或者我不知道该怎么做。
如何使用Visual Studio 2017在XAML/WPF中添加功能区控件?
编辑:
我已经通过此XAML代码获得了一些东西:
<Window x:Class="WMathTest.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:ribbon="clr-namespace:System.Windows.Controls.Ribbon.Primitives;assembly=System.Windows.Controls.Ribbon"
xmlns:local="clr-namespace:WMathTest"
mc:Ignorable="d"
Title="MainWindow" Height="350" Width="525">
<DockPanel>
<Ribbon>
<ribbon:RibbonTabsPanel></ribbon:RibbonTabsPanel>
</Ribbon>
</DockPanel>
</Window>
就是这样,但这是另一个窗口中的功能区窗口。功能区栏中不包含窗口名称和按钮,这与带有功能区的普通应用程序一样。
最佳答案
您需要添加以下引用:System.Windows.Controls.Ribbon
然后使用RibbonWindow而不是Window:
<RibbonWindow ...
还记得更改部分的基类:
using System.Windows.Controls.Ribbon;
public partial class MainWindow : RibbonWindow
{
public MainWindow()
{
InitializeComponent();
}
}
关于wpf - 使用Visual Studio 2017在WPF应用中创建功能区,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/42725338/