unit1.h

来自「DES完全自己实现!能对输入字符串或者选定实现CBC」· C头文件 代码 · 共 82 行

H
82
字号
//---------------------------------------------------------------------------

#ifndef Unit1H
#define Unit1H
//---------------------------------------------------------------------------
#include <Classes.hpp>
#include <Controls.hpp>
#include <StdCtrls.hpp>
#include <Forms.hpp>
#include <ComCtrls.hpp>
#include <Dialogs.hpp>
#include <ExtCtrls.hpp>
#include <jpeg.hpp>
//---------------------------------------------------------------------------
class TForm1 : public TForm
{
__published:	// IDE-managed Components
        TPageControl *PageControl1;
        TTabSheet *TabSheet1;
        TTabSheet *TabSheet2;
        TTabSheet *TabSheet3;
        TLabel *Label1;
        TGroupBox *GroupBox1;
        TRadioButton *RadioButton1;
        TRadioButton *RadioButton2;
        TRadioButton *RadioButton3;
        TRadioButton *RadioButton4;
        TButton *Encrypt1;
        TButton *Decrypt1;
        TButton *Exit1;
        TLabel *Label2;
        TLabel *Label3;
        TMemo *Memo1;
        TMemo *Memo2;
        TGroupBox *GroupBox2;
        TEdit *Edit1;
        TEdit *Edit2;
        TLabel *Label4;
        TLabel *Label5;
        TLabel *Label6;
        TLabel *Label7;
        TLabel *Label8;
        TLabel *Label9;
        TButton *Directry1;
        TButton *Directry2;
        TGroupBox *GroupBox3;
        TLabel *Label10;
        TLabel *Label11;
        TEdit *Edit3;
        TEdit *Edit4;
        TButton *Encrypt2;
        TButton *Decrypt2;
        TButton *Exit2;
        TOpenDialog *OpenDialog1;
        TSaveDialog *SaveDialog1;
        TGroupBox *GroupBox4;
        TRadioButton *RadioButton5;
        TRadioButton *RadioButton6;
        TRadioButton *RadioButton7;
        TRadioButton *RadioButton8;
        TImage *Image1;
        TLabel *Label14;
        void __fastcall Encrypt1Click(TObject *Sender);
        void __fastcall Decrypt1Click(TObject *Sender);
        void __fastcall Memo1KeyPress(TObject *Sender, char &Key);
        void __fastcall Edit1KeyPress(TObject *Sender, char &Key);
        void __fastcall Edit2KeyPress(TObject *Sender, char &Key);
        void __fastcall Directry1Click(TObject *Sender);
        void __fastcall Directry2Click(TObject *Sender);
        void __fastcall Encrypt2Click(TObject *Sender);
        void __fastcall Decrypt2Click(TObject *Sender);
        void __fastcall Exit1Click(TObject *Sender);
        void __fastcall Exit2Click(TObject *Sender);
private:	// User declarations
public:		// User declarations
        __fastcall TForm1(TComponent* Owner);
};
//---------------------------------------------------------------------------
extern PACKAGE TForm1 *Form1;
//---------------------------------------------------------------------------
#endif

⌨️ 快捷键说明

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