tprogressform.h
来自「把html转成txt 把html转成txt」· C头文件 代码 · 共 33 行
H
33 行
//---------------------------------------------------------------------------
#ifndef TProgressFormH
#define TProgressFormH
//---------------------------------------------------------------------------
#include <Classes.hpp>
#include <Controls.hpp>
#include <StdCtrls.hpp>
#include <Forms.hpp>
#include <ComCtrls.hpp>
//---------------------------------------------------------------------------
class TProgressForm : public TForm
{
__published: // IDE-managed Components
TProgressBar *ProgressBar;
TLabel *Label1;
TLabel *Label2;
TButton *CancelButton;
TStaticText *FromText;
TStaticText *ToText;
void __fastcall FormShow(TObject *Sender);
private: // User declarations
public: // User declarations
__fastcall TProgressForm(TComponent* Owner);
void __fastcall OnFinished(TObject *Sender);
void __fastcall OnProgress(System::TObject *Sender, int percent);
void SetInPathname(const AnsiString &string);
void SetOutPathname(const AnsiString &string);
};
//---------------------------------------------------------------------------
extern PACKAGE TProgressForm *ProgressForm;
//---------------------------------------------------------------------------
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?