使用 VS2012 和 .NET 4.0,我在 UserControl 中有以下代码块:
<GroupBox Name="LocalGroup">
<GroupBox.Header>
<TextBlock FontWeight="Bold"
Text="Local Rules">
</TextBlock>
</GroupBox.Header>
<StackPanel Margin="20,8,10,0"
Orientation="Vertical" >
<local:LocalRulesHeader />
</StackPanel>
</GroupBox>
当我构建程序时,行 '' 得到蓝色波浪下划线和错误消息
Error 16 The component 'ToolLibrary.LocalRulesHeader' does not have a resource
identified by the URI '/ToolLibrary;component/xamlclasses/localrulesheader.xaml'.
然而,当我清理项目时,蓝色波浪线消失了,LocalRulesHeader 按预期显示在 GroupBox 中。我进行了构建,蓝色波浪线和错误消息再次出现。
我试过清理项目以及关闭VS并重新启动无济于事。
有没有人遇到过这种情况并找到解决方法?