简单的课程:
public partial class MainWindow
{
public MainWindow()
{
this.InitializeComponent();
}
}
class MainWindow
带有加下划线的红色,resharper正在抱怨IComponentConnector.Connect is not implemented
。检查文件obj\Debug\MainWindow.g.i.cs
,方法就在那里,编译器不会抱怨任何内容。
我错过了什么?这是R#中的错误吗?我此刻有很多错误的解决方案错误 - 这个计数没用。
即使在以下情况下问题仍然存在:
答案 0 :(得分:24)
从项目引用中删除System.Windows
。
根据文档IComponentConnector已从WindowsBase
移至System.Xaml
。我认为System.Windows
也可能涉及,但没有记录。