filedlg.h
来自「DOS下的图形界面开发包」· C头文件 代码 · 共 28 行
H
28 行
#ifndef __FILEDLG_H
#define __FILEDLG_H
#include "dialog.h"
#include "checkbox.h"
#include "radio.h"
#include "scroll.h"
#include "tedit.h"
#include "listbox.h"
typedef class filedlg_class Tfiledlg;
class filedlg_class :public Tdialog {
public:
Tcheckbox * acheckbox;
Tradio *aradio;
Tscroll *hscroll;
Tscroll *vscroll;
Ttedit *tedit;
Ttedit *tedit2;
Tlistbox *listbox;
public:
filedlg_class(int ID,char *title,int left,int top,int width,int height);
~filedlg_class ();
};
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?