我已关注this文章和其他一些文章来创建自定义RoutedUICommand。 我正在使用Infragistics Ribbon,但我不认为问题来自那里。
<igRibbon:XamRibbonWindow x:Class="MyRibbonWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:igRibbon="http://infragistics.com/Ribbon"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:MyNamespaceTag="clr-namespace:MyNamespace"
xmlns:igWPF="http://schemas.infragistics.com/xaml/wpf" mc:Ignorable="d"
WindowState="Maximized">
<igRibbon:XamRibbonWindow.Resources>
<!-- Some DataTempaltes here -->
</igRibbon:XamRibbonWindow.Resources>
<igRibbon:RibbonWindowContentHost x:Name="ribbonWindowContentHost" >
<igRibbon:RibbonWindowContentHost.Ribbon>
<igRibbon:XamRibbon x:Name="xamRibbon" Theme="[current]">
<igRibbon:XamRibbon.ApplicationMenu>
<igRibbon:ApplicationMenu>
<igRibbon:ApplicationMenu.FooterToolbar>
<igRibbon:ApplicationMenuFooterToolbar>
<igRibbon:ButtonTool Name="appMenuOptions" Caption="Opt_ions"/>
</igRibbon:ApplicationMenuFooterToolbar>
</igRibbon:ApplicationMenu.FooterToolbar>
</igRibbon:ApplicationMenu>
</igRibbon:XamRibbon.ApplicationMenu>
</igRibbon:XamRibbon>
</igRibbon:RibbonWindowContentHost.Ribbon>
<ContentControl Content="{Binding MyContent}"
ContentTemplateSelector="{StaticResource myContentTemplateSelector}" />
</igRibbon:RibbonWindowContentHost>
</igRibbon:XamRibbonWindow>
我们需要更改Infragistics功能区的外观和感觉,Infragistics社区的团队成员建议添加样式。问题是,当我们将它添加到功能区的“资源”部分时,它不起作用。 所以我们被迫做了以下事情:
var resourceDictionary = new ResourceDictionary();
resourceDictionary.Source = new Uri(
@"/MyNamespace;component/Resources/RibbonResources.xaml",
UriKind.RelativeOrAbsolute);
xamRibbon.Resources.MergedDictionaries.Add(resourceDictionary);
这适用于功能区中的样式,但在RibbonResources.xaml中我们有一个按钮:
<Button Name="myButton"
Command="MyNamespaceTag:MyCommands.MyCommand"
Style="{StaticResource {x:Static ToolBar.ButtonStyleKey}}">
<Image Source="MyImage.png" Width="16" Height="16" />
</Button>
MyCommand和MyCommands类的创建完全与我提到的文章一样。 但是当我运行应用程序时,我收到以下错误:
XamlParseException:无法从文本创建“命令” MyNamespace:MyCommands.MyCommand'InnerException:Type reference 找不到名为'{clr-namespace:MyNamespace} MyCommands'的类型。
如果我使用这样的命令:
Command="{x:Static MyNamespaceTag:MyCommands.MyCommand}"
我得到以下异常:
XamlParseException:提供值 'System.Windows.Markup.StaticExtension'引发了异常。 InnerException:类型引用找不到命名的类型 '{CLR-名称空间:MyNamespaces} MyCommands'。
在代码隐藏中,我们绑定命令如下:
CommandBindings.Add(
new CommandBinding(
MyCommands.MyCommand,
Show,
CanShow));
如果我们将按钮直接放在我们拥有XamRibbonWindow的位置,它就可以正常工作。
我仍然是WPF的新手,我无法弄清楚我做错了什么。
答案 0 :(得分:1)
你在MyNamespace:MyCommands.MyCommand
的正确道路上。看起来您在xaml文件中包含MyNamespace
为“Shell”。在igRibbon:XamRibbonWindow
标记的顶部,您应该包含xmlns:MyNamespace=[whatever]
属性,或者更改
MyNamespace:MyCommands.MyCommand
到
Shell:MyCommands.MyCommand
。