?? cformbase.h
字號(hào):
#ifndef _CFORMBASE_H_
#define _CFORMBASE_H_
//界面基類(lèi)
#include "CAccount.h"
class CFormBase
{
public:
CFormBase();
virtual void load();//界面框架
//光標(biāo)控制
static void GotoXY(int x,int y);
static void WhereXY(int* x,int* y);
//定長(zhǎng)輸入函數(shù)
static void GetString(string &_str,int maxlen);
//翻頁(yè)函數(shù)
void Print();
bool PrintPage(vector<CAccount>&vecacc,int maxpage,int page);
bool ChangePage(char ch,int maxpage,int &page);
};
#endif
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -