⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 about.h

📁 特别是在题库管理模块中对自动组卷功能常用的算法(包括随机选取法、回溯试探法和遗传算法)进行了比较。对于较流行的验证码技术也给出了具体实现。
💻 H
字号:
//----------------------------------------------------------------------------
#ifndef AboutH
#define AboutH
//----------------------------------------------------------------------------

#include <vcl\System.hpp>
#include <vcl\Windows.hpp>
#include <vcl\SysUtils.hpp>
#include <vcl\Classes.hpp>
#include <vcl\Graphics.hpp>
#include <vcl\StdCtrls.hpp>
#include <vcl\Forms.hpp>
#include <vcl\Controls.hpp>
#include <vcl\Buttons.hpp>
#include <vcl\ExtCtrls.hpp>
#include "SUIForm.hpp"
//----------------------------------------------------------------------------
class TAboutBox : public TForm
{
__published:
        TLabel *Label1;
        TsuiForm *suiForm1;
        TLabel *Label3;
        TMemo *Memo1;
        TBevel *Bevel1;
        TLabel *Label4;
        TLabel *Label6;
        TLabel *Label7;
        TLabel *Label5;
        TButton *OKBtn;
        TLabel *Label2;
        void __fastcall OKBtnClick(TObject *Sender);
        void __fastcall Label5Click(TObject *Sender);
        void __fastcall Label7Click(TObject *Sender);
private:
public:
	virtual __fastcall TAboutBox(TComponent* AOwner);
};
//----------------------------------------------------------------------------
extern PACKAGE TAboutBox *AboutBox;
//----------------------------------------------------------------------------
#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -