发布时间:2020-09-06编辑:佚名阅读(2251)
打开编译器,文件→新建项目,模板→Visual C#→Extensibility 选择 VSIX Project.创建一个项目。
右键项目,添加新项。Visual C#项→Extensibility→Custom Command。
找到CommandPackage.vsct文件 修改菜单名。在Commands节点下的Buttons。
再打开Command1.cs文件,下拉到最后。
private void Execute(object sender, EventArgs e) { string message = "Hello Word"; string title = "测试"; // Show a message box to prove we were here VsShellUtilities.ShowMessageBox( this.package, message, title, OLEMSGICON.OLEMSGICON_INFO, OLEMSGBUTTON.OLEMSGBUTTON_OK, OLEMSGDEFBUTTON.OLEMSGDEFBUTTON_FIRST); }
运行,会打开一个新的Visual Studio,这是调试模式。点开工具 我们可以看到我们扩展的那个菜单。
点击测试菜单。
关键字: visual Studio 2017 扩展开发 Visual Studio 菜单栏 新增 菜单
1人
0人
0人
0人