Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个表单,上面有很多控件,但是在设计时看不到这些控件,我的意思是在 *.Designer.cs 上意外出现了问题。
这是我在运行时的表格:
这是设计时的相同形式:
所以,问题是我应该怎么做才能看到带有 *.Designer.cs 中所有控件的表单?我无法继续使用可视化设计器在其上添加/删除组件。
我仔细研究了存储库并找到了问题的原因:有人修改了Sps.Tester.Management.csproj并使其损坏。我在其中添加了以下几行:
<Compile Include="Settings.Designer.cs"> <DependentUpon>Settings.cs</DependentUpon> </Compile>
问题消失了。