📄 cformbase.h
字号:
#ifndef _CFORMBASE_H_
#define _CFORMBASE_H_
//界面基类
#include "CAccount.h"
class CFormBase
{
public:
CFormBase();
virtual void load();//界面框架
//光标控制
static void GotoXY(int x,int y);
static void WhereXY(int* x,int* y);
//定长输入函数
static void GetString(string &_str,int maxlen);
//翻页函数
void Print();
bool PrintPage(vector<CAccount>&vecacc,int maxpage,int page);
bool ChangePage(char ch,int maxpage,int &page);
};
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -