editdlg.h
来自「DOS下的图形界面开发包」· C头文件 代码 · 共 21 行
H
21 行
#ifndef __EDITDLG_H
#define __EDITDLG_H
#include "dialog.h"
#include "tedit.h"
typedef class editdlg_class Teditdlg;
class editdlg_class :public Tdialog {
public:
Ttedit * content;
char * buf;
public:
editdlg_class(int ID,char *title,int left,int top,int width,int height,
char * old_content );
virtual BOOL func_canclose();
};
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?