Visual Studio 如何更改 GoToDeclaration 快捷方式 (Ctrl+F12)
Visual Studio how to change GoToDeclaration shortcut (Ctrl+F12)
在Visual Studio,C#中,我们有很多接口。并且您想查看函数的实现以及通过按 Ctrl+F12=GoToDeclaration.
的唯一方法
其他快捷键Ctrl + 左键单击或F12将转到界面中的函数定义。与查看实际实现和导航代码的必要性相比,这不是那么常用。
我通过点击名字高度导航。我知道你也是。唯一的方法是按两个键,这非常慢,特别是因为检查时通常只使用鼠标。
我想将 GoToDeclaration 快捷方式从 Ctrl + F12 更改为 鼠标中键单击 (滚动单击)和 Visual Studio设置只允许我使用键盘快捷键。
根据评论:
A simple workaround to use middle mouse
button click (scroll click) instead of Ctrl + F12
for the GoToDeclaration shortcut is to use AutoHotKey program
.
~MButton:: { Send {LButton} Send ^{F12} Return }
在Visual Studio,C#中,我们有很多接口。并且您想查看函数的实现以及通过按 Ctrl+F12=GoToDeclaration.
的唯一方法其他快捷键Ctrl + 左键单击或F12将转到界面中的函数定义。与查看实际实现和导航代码的必要性相比,这不是那么常用。
我通过点击名字高度导航。我知道你也是。唯一的方法是按两个键,这非常慢,特别是因为检查时通常只使用鼠标。
我想将 GoToDeclaration 快捷方式从 Ctrl + F12 更改为 鼠标中键单击 (滚动单击)和 Visual Studio设置只允许我使用键盘快捷键。
根据评论:
A simple workaround to use
middle mouse
button click (scroll click) instead ofCtrl + F12
for the GoToDeclaration shortcut is to useAutoHotKey program
.
~MButton:: { Send {LButton} Send ^{F12} Return }