git-svn-id: https://192.168.0.254/svn/Componentes.Terceros.DevExpressVCL@26 05c56307-c608-d34a-929d-697000501d7a
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
|