有没有办法进行自定义“分组”? Visual Studio 的解决方案资源管理器中的文件数量?
为了多解释一下,我有一个文件 Sidebar.cs、Sidebar.js 和 Sidebar.css。
我希望能够将其设为 Sidebar.cs、Sidebar.cs.js 和 Sidebar.cs.css,并让 js 和 css 文件位于树视图中 Sidebar.cs 节点的“下方”(作为其子节点) ,就像 .designer 文件和 .aspx.cs 文件发生的情况一样。
这有可能实现吗?
To explain a little more, I have a file Sidebar.cs, and I have Sidebar.js, and Sidebar.css.
I would like to be able to make it Sidebar.cs, Sidebar.cs.js, and Sidebar.cs.css, and have the js and css file go "under" (as children of) the Sidebar.cs node in the treeview, just like what happens with .designer files and .aspx.cs files.
Is this possible to accomplish?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在文本编辑器中打开项目文件或使用“编辑项目文件”上下文菜单(可能只是我拥有的加载项的一部分)。 然后,您可以使用 DependentUpon XML 标记来获取层次结构。 例如,这是表单及其设计器的外观:
请注意“DependentUpon”标签,意思是“使其成为另一个文件的子文件”。
Open up the project file in a text editor or using the "edit project file" context menu (might be only part of an add-in I have). You can then use the DependentUpon XML tag to get the hierarchy. For example, this is how a Form and it's designer look:
Note the "DependentUpon" tag, meaning "make this a child of another file".
我自己还没有尝试过这个,所以对此持保留态度,但这是我通过查看我必须手动打开的项目来推断的
在记事本(或其他首选文本编辑器)中打开项目文件,以及项目文件,因此它看起来像
而不是
根据需要包含尽可能多的
DependentUpon
子句和None
元素I haven't tried this myself, so take this with a pinch of salt, but this is what I infer by looking at projects I have to hand
Open the project file in notepad (or other preferred text editor), and the structure of a project file so it looks like
instead of
with as many
DependentUpon
clauses andNone
elements as needed