当我第一次打开Visual Studio和我的解决方案时,我在设计器中看到了这些错误;
-Invalidvalueforproperty' Command':Microsoft.VisualStudio.DesignTools.Xaml.LanguageService.Semantics.XmlValue'
- 组件' RatingControlSample.RatingControl'没有URI' / RatingControl标识的资源; component / ratingcontrol.xaml'
我可以在设计师看到我的应用程序gui没有任何问题。我只看到评级控制上的错误图像。我可以毫无问题地构建,编译和运行我的应用程序。当我重建解决方案错误消失。但是,当我在xaml文件中进行更改时,错误会重新出现。
在设计师的第一个错误点这一行;
<RepeatButton Style="{StaticResource SliderRepeatButton1}" Command="Slider.DecreaseLarge" />
在设计师的第二个错误点评级控制定义。
我正在使用名为评级控制的自定义控件,您可以在此处找到它:http://nickeandersson.blogs.com/blog/2008/02/a-rating-contro.html 我刚刚导入了它的dll文件。
第一个错误与评级控制无关,我的目标是x86。
为什么会出现这些错误?