c# – 在SQL Server Management Studio中创建一个新菜单项

是否可以在sql Server 2008 Management Studio中创建新的菜单项?

例如,当您右键单击数据库时,会出现一个选项列表(新数据库,新查询…).

是否可以在该列表中添加新项目并在单击该按钮时实现一些C#功能

解决方法

MSDN起.

菜单添加新项
菜单添加新项目

  1. On the Tools menu,click Options.
  2. In the Customize dialog Box,on the Commands tab,click New Menu.
  3. On the Commands Box,drag New Menu to the menu bar and drop it where you want the new menu to appear.
  4. On the menu,right-click New Menu,and in the Name Box,type a name for the new menu.
  5. In the Customize dialog Box,select category such as File,and select a command such as Open File. Drag the command to the new menu. As you point to the new menu,the menu will expand. Drop the command onto the expanded menu.
  6. In the Customize dialog Box,click Close.

相关文章

在项目中使用SharpZipLib压缩文件夹的时候,遇到如果目录较深,则压缩包中的文件夹同样比较深的问题。比...
项目需要,几十万张照片需要计算出每个照片的特征值(调用C++编写的DLL)。 业务流程:选择照片...
var array = new byte[4]; var i = Encoding.UTF8.GetBytes(100.ToString("x2"));//...
其实很简单,因为Combox的Item是一个K/V的object,那么就可以把它的items转换成IEnumerable<Dic...
把.net4.6安装包打包进安装程序。 关键脚本如下: 头部引用字符串对比库 !include "WordFunc....
项目需求(Winform)可以批量打印某个模板,经过百度和摸索,使用iTextSharp+ZXing.NetʿreeSp...