gpt4 book ai didi

visual-studio - 如何在 Visual Studio 2010 中的 .xaml 文件中折叠 .cs 文件?

转载 作者:行者123 更新时间:2023-12-03 23:34:33 25 4
gpt4 key购买 nike

如何将我的 ViewModel 文件(一个 .cs 文件)折叠在其对应的 View 文件(一个 .xaml 文件)文件中,如图所示?

enter image description here

最佳答案

我不知道有什么方法可以在 Visual Studio 中执行此操作,但您可以在文本编辑器中编辑 .csproj 文件。你应该找到这样的东西:

<Page Include="MainWindow.xaml">
<Generator>MSBuild:Compile</Generator>
<SubType>Designer</SubType>
</Page>
<Compile Include="MainWindow.xaml.cs">
<DependentUpon>MainWindow.xaml</DependentUpon>
<SubType>Code</SubType>
</Compile>

在您的文件中,这两个标签可能不相邻。重要的部分是 <DependantUpon>标签。

在您的文件中,找到带有 include="ViewModel.cs" 的标签属性。在此标签内,添加 <DependantUpon>View.xaml</DependantUpon>作为子元素。现在您的 ViewModel.cs 文件将始终位于 View.xaml 文件中。最后,您的文件应该具有与此代码段类似的内容:
<Page Include="View.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
</Page>
<Compile Include="ViewModel.cs">
<DependentUpon>View.xaml</DependentUpon>
</Compile>

关于visual-studio - 如何在 Visual Studio 2010 中的 .xaml 文件中折叠 .cs 文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5131526/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com