⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 codetmpl.txt

📁 VC开发工具使用技巧源代码:CodeTmplExBin
💻 TXT
字号:
                            CodeTmpl.txt 
                            ------------

 Configuration file for CodeTmpl add-in. Should live in DevStudio\SharedIDE


                           Example Comment Blocks	
                           ----------------------


#{File Header
/////////////////////////////////////////////////////////////////////////////
//
//                           Copyright .....
//
/////////////////////////////////////////////////////////////////////////////
//
//
//  File     :   
//
//  Author   :   
//
//  Date     :   
//
//  Synopsis :   
//
////////////////
#}

#{Block Header
/////////////////////////////////////////////////////////////////////////////
//
//  
//
///////////////
#}

#############################################################################

                           Example Code Snippets
                           ---------------------


#{Hello World (Console)
#include <stdio.h>

int main()
{
    puts("Hello, World");    
}
#}

#{Hello World (GUI)
#include <windows.h>

int PASCAL WinMain(HANDLE hInstance,
                   HANDLE hPrevInstance,
                   LPSTR lpszCommandLine,
                   int cmdShow)          
{
    MessageBox(NULL, "Hello, World", "Example", MB_OK);
}
#}

#############################################################################

                           Example Syntax Elements
                           -----------------------

#{Lazy Error Handling
try
{
}

catch(...)
{
}
#}

#{Quick Class Definition
class X
{
public:
    X();
    ~X();
protected:
private:
};
#}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -