【发布时间】:2015-08-31 19:29:26
【问题描述】:
我需要在 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。 功能区不显示。
我需要帮助。 Catel 丝带。
【问题讨论】: