如何在 Visual Studio 中设置默认的双击操作?

发布于 2024-07-14 15:37:12 字数 98 浏览 3 评论 0原文

当您双击 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

我早已燃尽 2024-07-21 15:37:12

右键单击解决方案资源管理器中的文件,选择“打开方式...”,选择 CSharp 编辑器,然后单击“设置为默认值”按钮。

Right click the file in the Solution Explorer, choose "Open With...", select the CSharp Editor, and click the "Set as Default" button.

茶色山野 2024-07-21 15:37:12

右键单击表单文件,然后单击“打开方式...”。 选择所需的设计器作为默认打开(在本例中为“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.

南街九尾狐 2024-07-21 15:37:12

使用此属性 myClass 将在代码编辑器而不是设计器中打开:

[System.ComponentModel.DesignerCategory("")]
public class myClass : Form
{

}

with this attribute myClass will open in the code editor and not the designer:

[System.ComponentModel.DesignerCategory("")]
public class myClass : Form
{

}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文