//--------------------------------------------------------------------------- #ifndef Unit2H #define Unit2H //--------------------------------------------------------------------------- #include #include #include #include #include //--------------------------------------------------------------------------- class TForm2 : public TForm { __published: // IDE 管理のコンポーネント TPanel *Panel1; TPanel *Panel2; void __fastcall FormClose(TObject *Sender, TCloseAction &Action); void __fastcall Panel1Click(TObject *Sender); void __fastcall Panel2Click(TObject *Sender); private: // ユーザー宣言 public: // ユーザー宣言 __fastcall TForm2(TComponent* Owner); }; //--------------------------------------------------------------------------- extern PACKAGE TForm2 *Form2; //--------------------------------------------------------------------------- #endif