提问人:khaled 提问时间:11/11/2023 更新时间:11/11/2023 访问量:32
Visual Studio 2022 快捷方式的完整列表
visual studio 2022 full complete list of shortcuts
问:
导出设置生成类似这样的东西,而没有给我实际的快捷方式。如何获取快捷方式的完整列表。
<KeyboardShortcuts>
<ScopeDefinitions>
<Scope Name="Team Explorer" ID="{7AA20502-9463-47B7-BF43-341BAF51157C}"/>
<Scope Name="VC Dialog Editor" ID="{543E0C02-8C85-4E43-933A-5EF320E3431F}"/>
<Scope Name="Rest Api Editor" ID="{5703B403-55E7-4C63-8C88-A8F52C7A45C5}"/>
<Scope Name="Find All References Tool Window" ID="{1FA1FD06-3592-4D1D-AC75-0B953320140C}"/>
...
但是在这长长的 GUID 列表之后,有一部分是我自己设置的几个快捷方式,在这里我们找到实际的快捷方式:
<DefaultShortcuts>
<Shortcut Command="View.ViewCode" Scope="Global">F7</Shortcut>
<Shortcut Command="View.ViewDesigner" Scope="Global">Shift+F7</Shortcut>
</DefaultShortcuts>
<ShortcutsScheme>Visual C# 2005</ShortcutsScheme>
<UserShortcuts>
<RemoveShortcut Command="Edit.LineOpenAbove" Scope="Text Editor">Ctrl+Enter</RemoveShortcut>
<RemoveShortcut Command="Edit.LineOpenBelow" Scope="Text Editor">Ctrl+Shift+Enter</RemoveShortcut>
<Shortcut Command="Edit.LineOpenAbove" Scope="Global">Ctrl+Shift+Enter</Shortcut>
<Shortcut Command="Edit.LineOpenBelow" Scope="Global">Ctrl+Enter</Shortcut>
</UserShortcuts>
答: 暂无答案
评论