-1

你如何在 Visual Studio 2010 中做到这一点?

它就像一堂课,但可折叠。有人有想法吗?

谢谢!

在此处输入图像描述

4

2 回答 2

1

Visual Studio 库中有几个扩展说明它们提供此功能,例如:

听起来 NestIn 是您所追求的,VSCommands 列出了它具有更多功能(我从未使用过它,因此无法以任何方式发表评论)

于 2013-04-11T02:47:17.347 回答
0

您可以<DependentUpon><projectName>.csproj.

您将不得不手动编辑您的<projectName>.csproj文件。

下面是一个例子: 这里FxTradingInvoice.csRemittanceInvoice.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>

输出:

在此处输入图像描述

于 2013-04-11T03:03:47.587 回答