如何在 Visual Studio 中设置默认的双击操作?
当您双击 Form1.cs
时,如何使 Visual Studio 默认为“查看源代码”。 与视图设计器相比,我更喜欢将“查看源代码”设置为双击的默认值。
How can I make Visual Studio default to View Source when you double-click the Form1.cs
. I prefer to make View Source the default of double-click than View Designer.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
右键单击解决方案资源管理器中的文件,选择“打开方式...”,选择 CSharp 编辑器,然后单击“设置为默认值”按钮。
Right click the file in the Solution Explorer, choose "Open With...", select the CSharp Editor, and click the "Set as Default" button.
右键单击表单文件,然后单击“打开方式...”。 选择所需的设计器作为默认打开(在本例中为“CSharp 编辑器”或“Microsoft Visual Basic 编辑器”),然后单击“设置为默认”。 瞧。
Right click a form file and click "Open With...". Pick your desired designer to open as default (in this case "CSharp Editor" or "Microsoft Visual Basic Editor") and click "Set as Default". Voila.
使用此属性 myClass 将在代码编辑器而不是设计器中打开:
with this attribute myClass will open in the code editor and not the designer: