welcome.h

来自「关于书籍《Borland c++Builder工程实践》的源代码」· C头文件 代码 · 共 34 行

H
34
字号
//---------------------------------------------------------------------------

#ifndef WelcomeH
#define WelcomeH
//---------------------------------------------------------------------------
#include <Classes.hpp>
#include <Controls.hpp>
#include <StdCtrls.hpp>
#include <Forms.hpp>
#include <Buttons.hpp>
//---------------------------------------------------------------------------
class TWelcomeForm : public TForm
{
__published:	// IDE-managed Components
  TLabel *Label1;
  TEdit *UserNickName;
  TGroupBox *GroupBox1;
  TRadioButton *RadioButton1;
  TRadioButton *RadioButton2;
  TLabel *Label2;
  TEdit *Host;
  TBitBtn *BitBtn1;
  TBitBtn *BitBtn2;
    void __fastcall RadioButton1Click(TObject *Sender);
    void __fastcall RadioButton2Click(TObject *Sender);
private:	// User declarations
public:		// User declarations
  __fastcall TWelcomeForm(TComponent* Owner);
};
//---------------------------------------------------------------------------
extern PACKAGE TWelcomeForm *WelcomeForm;
//---------------------------------------------------------------------------
#endif

⌨️ 快捷键说明

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