📄 password.h
字号:
//---------------------------------------------------------------------------
// Name: Password.h
// Author: Jrays
// Date: 1999.8.7
//----------------------------------------------------------------------------
#ifndef PasswordH
#define PasswordH
//----------------------------------------------------------------------------
#include <vcl\Buttons.hpp>
#include <vcl\StdCtrls.hpp>
#include <vcl\Controls.hpp>
#include <vcl\Forms.hpp>
#include <vcl\Graphics.hpp>
#include <vcl\Classes.hpp>
#include <vcl\SysUtils.hpp>
#include <vcl\Windows.hpp>
#include <vcl\System.hpp>
//----------------------------------------------------------------------------
class TfrmPassword : public TForm
{
__published:
TLabel *Label1;
TEdit *edtPassword;
TButton *OKBtn;
TButton *CancelBtn;
void __fastcall FormCreate(TObject *Sender);
void __fastcall FormActivate(TObject *Sender);
private:
public:
virtual __fastcall TfrmPassword(TComponent* AOwner);
};
//----------------------------------------------------------------------------
extern PACKAGE TfrmPassword *frmPassword;
//----------------------------------------------------------------------------
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -