在Visual Studio 11中使用.NET 4.5构建WPF应用程序时,我在Visual Studio中收到一个奇怪的错误。
我的WPF XAML标记如下:
<RibbonWindow x:Class="Fablelane.DesktopApplication.CreateStory"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="Create new story" Height="468" Width="526">
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="Auto" />
<RowDefinition />
</Grid.RowDefinitions>
<Ribbon>
<Ribbon.ApplicationMenu>
<RibbonApplicationMenu>
</RibbonApplicationMenu>
</Ribbon.ApplicationMenu>
<RibbonTab Margin="0" Header="Format">
<RibbonGroup Header="Font">
<StackPanel Orientation="Horizontal">
<RibbonComboBox>
<RibbonGallery SelectedValue="Heading 1"
SelectedValuePath="Content"
MaxColumnCount="1">
<RibbonGalleryCategory>
<RibbonGalleryItem Content="Heading 1" Foreground="#16ea00" FontSize="20" />
<RibbonGalleryItem Content="Heading 2" Foreground="#00c6ff" FontSize="18" />
<RibbonGalleryItem Content="Heading 3" Foreground="#999999" FontSize="16" />
<RibbonGalleryItem Content="Heading 3" Foreground="#707070" FontSize="14" />
<RibbonGalleryItem Content="Content" Foreground="#FF606060" />
</RibbonGalleryCategory>
</RibbonGallery>
</RibbonComboBox>
</StackPanel>
<RibbonControlGroup Margin="2">
<RibbonToggleButton Label="B"
FontWeight="Bold" FontFamily="Times New Roman" Padding="2" />
<RibbonToggleButton Label="I"
FontStyle="Italic" FontFamily="Times New Roman" Padding="2" />
<RibbonToggleButton Label="U" FontFamily="Times New Roman" Padding="2,2,2,0" />
</RibbonControlGroup>
</RibbonGroup>
</RibbonTab>
<RibbonTab Margin="0" Header="Options">
</RibbonTab>
</Ribbon>
<RichTextBox Grid.Row="1">
</RichTextBox>
</Grid>
</RibbonWindow>
现在,当我构建时,我收到错误:
未知的构建错误,'方法'get_Command'在类型'System.Windows.Controls.Ribbon.RibbonGallery'中来自程序集'System.Windows.Controls.Ribbon,Version = 4.0.0.0,Culture = neutral,PublicKeyToken = b77a5c561934e089'没有实施。
当我从代码中删除RibbonGallery元素时,它会编译并运行得很好。
应该注意的是,我可以很容易地看到设计器视图在Visual Studio中使用RibbonGallery元素进行渲染。它只是在构建期间失败。
答案 0 :(得分:1)
对我而言,它看起来像一个错误,为什么不使用反射器并检查ICommand的吸气剂是否正确暴露?
答案 1 :(得分:1)
我看不出问题。
如果我使用DotPeek查看Ribbon程序集,那么我可以看到Command属性
public ICommand Command
{
get
{
return (ICommand) this.GetValue(RibbonGallery.CommandProperty);
}
set
{
this.SetValue(RibbonGallery.CommandProperty, (object) value);
}
}
但是你似乎没有使用它。
是否值得从头开始创建新的测试应用程序?
答案 2 :(得分:1)
我们遇到了同样的问题,从4.0到4.8,但是我们必须删除正确的system.dll并将其重新添加到引用中。