给Visual Studio 添加宏工具条

 

Visual Studio添加一个工具条,工具条中实现两个功能(有两个按钮):1,插入分割线(简单);2,添加文件注释(复杂)。来说明本文:给Visual Studio 添加宏工具条

1)  打开VisualStudio的宏管理器:工具--Macros资源管理器,点击【宏】,右键新建宏项目(名字为MyMacros),完成后,右键点击【MyMacros-新建模块,名字为:Comment

 

拷贝下面的代码:注意(Public ModuleComment的意思是:刚才新建的模块的名字是:Commnet;然后添加了两个函数:SplitFile分别代表:插入分割线和插入文件注释),然后保存。

 

 

ImportsSystem

ImportsEnvDTE

ImportsEnvDTE80

ImportsEnvDTE90

ImportsEnvDTE90a

ImportsEnvDTE100

ImportsSystem.Diagnostics

Public Module Comment

'华丽的分割线

   Sub Split()

       DTE.ActiveDocument.Selection.NewLine()

        DTE.ActiveDocument.Selection.Text = "//----------------------------------华丽的分割线----------------------------------//"

       DTE.ActiveDocument.Selection.NewLine()

   End Sub

   '文件

   Sub FILE()

       DTE.ActiveDocument.Selection.Text = "/******************************************************************************"

       DTE.ActiveDocument.Selection.NewLine()

       DTE.ActiveDocument.Selection.Indent()

       DTE.ActiveDocument.Selection.Text = "文件名称: "+ DTE.ActiveDocument.Name.ToString()

       DTE.ActiveDocument.Selection.NewLine()

       DTE.ActiveDocument.Selection.Text = "作   者: " + Environ("USERNAME")

       DTE.ActiveDocument.Selection.NewLine()

       DTE.ActiveDocument.Selection.Text = "创建时间: "+ System.DateTime.Now.ToLocalTime()

       DTE.ActiveDocument.Selection.NewLine()

       DTE.ActiveDocument.Selection.Text = "文件描述:"

       DTE.ActiveDocument.Selection.NewLine()

       DTE.ActiveDocument.Selection.Text = "版权声明: Copyright(C) XXX Technologies Inc. AllRights Reserved "

       DTE.ActiveDocument.Selection.NewLine()

       DTE.ActiveDocument.Selection.Text = "修改历史: N/A"

       DTE.ActiveDocument.Selection.NewLine()

       DTE.ActiveDocument.Selection.DeleteLeft()

       DTE.ActiveDocument.Selection.Text = "*******************************************************************************/"

End Sub

End Module

2)  开始做自己的工具条了:开始-自定义

新建一个工具栏,如新建一个:A宏,切换到命名Tab页,如下图,添加命令

这样就形成了一个名字为:A宏的工具条。

3)  将工具条,添加到Visual的界面上。

视图-工具栏,然后找到自己的刚刚定义的A宏工具条就可以了。

 

多分享,多受益。

我为人人,人人为我。

赠人玫瑰,手留余香。点击链接刷刷流量吧:http://shop70757995.taobao.com/

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值