29 lines
911 B
C
29 lines
911 B
C
|
|
//---------------------------------------------------------------------------
|
||
|
|
#ifndef treeH
|
||
|
|
#define treeH
|
||
|
|
//---------------------------------------------------------------------------
|
||
|
|
#include <vcl\Classes.hpp>
|
||
|
|
#include <vcl\Controls.hpp>
|
||
|
|
#include <vcl\StdCtrls.hpp>
|
||
|
|
#include <vcl\Forms.hpp>
|
||
|
|
#include <vcl\ComCtrls.hpp>
|
||
|
|
#include <vcl\Buttons.hpp>
|
||
|
|
#include <dxtree.hpp>
|
||
|
|
|
||
|
|
//---------------------------------------------------------------------------
|
||
|
|
class TForm2 : public TForm
|
||
|
|
{
|
||
|
|
__published: // IDE-managed Components
|
||
|
|
TdxTreeView *TreeView1;
|
||
|
|
TLabel *Label1;
|
||
|
|
TLabel *Label2;
|
||
|
|
TBitBtn *BitBtn1;
|
||
|
|
private: // User declarations
|
||
|
|
public: // User declarations
|
||
|
|
__fastcall TForm2(TComponent* Owner);
|
||
|
|
};
|
||
|
|
//---------------------------------------------------------------------------
|
||
|
|
extern TForm2 *Form2;
|
||
|
|
//---------------------------------------------------------------------------
|
||
|
|
#endif
|