我在Xamarin中有一个项目,我的.designer.cs文件不再嵌套在.cs文件下,导致编译错误。有没有办法再次关联它们,以便我可以编译我的项目?见下图(ListHeader与ListTableView)。
答案 0 :(得分:7)
编辑项目文件并尝试:
<Compile Include="ListHeader.cs" />
<Compile Include="ListHeader.designer.cs">
<DependentUpon>ListHeader.cs</DependentUpon>
</Compile>
这两个文件都应标记为Build Action / Compile
。