c++ builderでのgui program sample1
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
#ifndef Unit1H
|
|
|
|
|
#define Unit1H
|
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
#include <System.Classes.hpp>
|
|
|
|
|
#include <Vcl.Controls.hpp>
|
|
|
|
|
#include <Vcl.StdCtrls.hpp>
|
|
|
|
|
#include <Vcl.Forms.hpp>
|
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
class TForm1 : public TForm
|
|
|
|
|
{
|
|
|
|
|
__published: // IDE <EFBFBD>ŊǗ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>R<EFBFBD><EFBFBD><EFBFBD>|<EFBFBD>[<EFBFBD>l<EFBFBD><EFBFBD><EFBFBD>g
|
|
|
|
|
TButton *Button1;
|
|
|
|
|
TEdit *Edit1;
|
|
|
|
|
TLabel *Label1;
|
|
|
|
|
TLabel *Label2;
|
|
|
|
|
TLabel *Label3;
|
|
|
|
|
void __fastcall Button1Click(TObject *Sender);
|
|
|
|
|
private: // <EFBFBD><EFBFBD><EFBFBD>[<EFBFBD>U<EFBFBD>[<EFBFBD>錾
|
|
|
|
|
public: // <EFBFBD><EFBFBD><EFBFBD>[<EFBFBD>U<EFBFBD>[<EFBFBD>錾
|
|
|
|
|
__fastcall TForm1(TComponent* Owner);
|
|
|
|
|
};
|
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
extern PACKAGE TForm1 *Form1;
|
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
#endif
|