Visual Studio 小工具

折叠解决方案的每个项(Collapse Solution)

功能:折叠解决方案视图窗口中的解决方案或项目级别的每个项。包括嵌套在解决方案文件夹中的子项,引用和属性文件夹扩展节点。

源代码的文件头实现方式

参考:http://www.cnblogs.com/jes_shaw/p/3214488.html

快捷方式添加日期

1. Tools->Marcos->Marcos IDE
2. 添加MyCodeSnippet Module

Public Module MyCodeSnippet
    Sub PrintDateTime()
        If (Not IsNothing(DTE.ActiveDocument)) Then
            Dim selection As TextSelection = DTE.ActiveDocument.Selection
            selection.Insert(DateTime.Now.ToString("yyyy-MM-dd"))
        End If
    End Sub
End Module

3. Tools->Options->Environment->Keyboard

找到MyCodeSnippet PrintDateTime输入快捷键即可。

修改VS皮肤

http://studiostyl.es/

http://visualstudiogallery.msdn.microsoft.com/20cd93a2-c435-4d00-a797-499f16402378/

Visual Studio 2010快捷方式

http://www.shortcutworld.com/en/win/Visual-Studio_2010.html

原文地址:https://www.cnblogs.com/jes_shaw/p/3316791.html