如何在catel DataWindow中使用功能区

时间:2015-08-31 10:49:16

标签: wpf catel

我需要在catel:DataWindow中使用功能区。 我尝试使用流利的功能区,但没有在最后的catel版本中工作。

<catel:DataWindow x:Class="STK_Lite.Views.MainWindow"
              xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
              xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
              xmlns:catel="http://catel.codeplex.com"

              xmlns:ctrl="clr-namespace:Itenso.Windows.Controls.ListViewLayout;assembly=Itenso.Windows.Controls.ListViewLayout"
              xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
              xmlns:fluent="clr-namespace:Fluent;assembly=Fluent">

<Grid>
    <fluent:Ribbon>
        <fluent:RibbonTabItem Header="TEMPL">
            <fluent:RibbonGroupBox Header="CEATE TEMPL">
                <fluent:Button Name="ButtonCreateConf"
                               Command="{Binding Path=OpenFileXmlConfig}"
                               Header="CONFIG"
                               Size="Large">
                    <fluent:Button.LargeIcon>
                        <ContentControl Template="{StaticResource XmlConfigDriver}" />
                    </fluent:Button.LargeIcon>
                </fluent:Button>
            </fluent:RibbonGroupBox>
        </fluent:RibbonTabItem>
</Grid>

  

我必须使用FluentWindow catelDataWindow。但我必须使用catel:DataWindow。   功能区不显示。

我需要帮助。卡特尔的丝带。

1 个答案:

答案 0 :(得分:0)

我们实际上在名为Orchestra的项目中为Catel提供了开箱即用的shell。它包含以下shell:

  • Ribbon.Fluent
  • MahApps

我建议您查看Ribbon.Fluent示例,其中已经为您完成了所有艰苦的工作(以及许多其他便利)。