你如何在 Visual Studio 2010 中做到这一点?
它就像一堂课,但可折叠。有人有想法吗?
谢谢!
您可以<DependentUpon>
在<projectName>.csproj
.
您将不得不手动编辑您的<projectName>.csproj
文件。
下面是一个例子: 这里FxTradingInvoice.cs
和RemittanceInvoice.cs
被添加为 DependentUpon Invoice.cs
。这将提供与您在解决方案资源管理器中截图相同的视图。
WpfApplication1.csproj:
<Compile Include="Invoice.cs"/>
<Compile Include="FxTradingInvoice.cs">
<DependentUpon>Invoice.cs</DependentUpon>
</Compile>
<Compile Include="RemittanceInvoice.cs">
<DependentUpon>Invoice.cs</DependentUpon>
</Compile>
输出: