我需要在catel中使用丝带:DataWindow。我试过用流利的丝带,但没有在最后的猫版本工作。
<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。没有显示丝带。
我需要帮助。凯特尔的丝带。
发布于 2015-08-31 11:29:26
实际上,我们在一个名为管弦乐队的项目中为Catel提供了现成的shell。它包含以下shell:
我建议您查看Ribbon.Fluent示例,在这个示例中,所有的艰苦工作都已经为您完成了(以及许多其他便利)。
https://stackoverflow.com/questions/32309523
复制相似问题