📄 test_frm.h
字号:
//---------------------------------------------------------------------------
#ifndef TEST_FrmH
#define TEST_FrmH
//---------------------------------------------------------------------------
#include <Classes.hpp>
#include <Controls.hpp>
#include <StdCtrls.hpp>
#include <Forms.hpp>
#include <ExtCtrls.hpp>
#include <Menus.hpp>
#include <Buttons.hpp>
#include <Dialogs.hpp>
#include <iostream>
#include "ZWFC.h"
//---------------------------------------------------------------------------
class TForm1 : public TForm
{
__published: // IDE-managed Components
TGroupBox *GroupBox1;
TMemo *Memo;
TPanel *Panel1;
TGroupBox *GroupBox2;
TListBox *ListBox;
TBitBtn *Btn_Load;
TBitBtn *Btn_Exequte;
TBitBtn *Btn_Output;
TOpenDialog *Open;
TSaveDialog *Save;
TMainMenu *MainMenu1;
TMenuItem *Options1;
TMenuItem *SetDictionary;
TMenuItem *SetDefaltSavePath;
TMenuItem *SetDefaltLoadPath;
void __fastcall Btn_LoadClick(TObject *Sender);
void __fastcall Btn_OutputClick(TObject *Sender);
void __fastcall SetDictionaryClick(TObject *Sender);
private: // User declarations
Dictiory* D;
String DictionaryPath;
String DftLoadPath;
String DftSavePath;
public: // User declarations
__fastcall TForm1(TComponent* Owner);
};
//---------------------------------------------------------------------------
extern PACKAGE TForm1 *Form1;
//---------------------------------------------------------------------------
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -