?? 使用方法.txt
字號:
SkinPlusPlus的使用方法
現假設MFC的工程名為 Formula
1.在Formula.cpp 中加入#include "Skin\SkinPlusPlus.h"
2.在Formula.cpp添加代碼 InitializeSkin(_T("Skin\\SoftCrystal.ssk"));
BOOL CFormulaApp::InitInstance()
{
......
//初始化皮膚
InitializeSkin(_T("Skin\\SoftCrystal.ssk"));
.......
}
3.用類向導在中添加ExitInstance(),并在里面添加語句ExitSkin();
int CFormulaApp::ExitInstance()
{
// TODO: Add your specialized code here and/or call the base class
//退出皮膚
ExitSkin();
return CWinApp::ExitInstance();
}
4.在Project Setting 中選擇Link選項,在Object 中加入 Skin\SkinPlusPlusDLL.lib
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -