WPF功能区控件,在单独的xaml文件中带有选项卡

时间:2018-10-01 17:57:48

标签: wpf xaml ribbon

我可以使用功能区控件在不同的xaml文件中设置标签吗?

非工作示例

主文件:

<r:RibbonWindow 
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" 
    xmlns:r="clr-namespace:System.Windows.Controls.Ribbon;assembly=System.Windows.Controls.Ribbon"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"  

    <r:Ribbon Grid.Row="0" Grid.Column="0" Grid.ColumnSpan="2">
        <r:RibbonTab Header="Tab 1">

        </r:RibbonTab>
    </r:Ribbon>
</r:RibbonWindow>

第二个文件:

<UserControl>
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" 
    xmlns:r="clr-namespace:System.Windows.Controls.Ribbon;assembly=System.Windows.Controls.Ribbon"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"

    <r:RibbonTab Header="Tab 2">

    </r:RibbonTab>
</UserControl>

,然后将两个文件合并在一个带有两个标签的功能区中。

0 个答案:

没有答案