git-svn-id: https://192.168.0.254/svn/Componentes.Terceros.DevExpressVCL@8 05c56307-c608-d34a-929d-697000501d7a
28 lines
997 B
C++
28 lines
997 B
C++
//---------------------------------------------------------------------------
|
|
|
|
#ifndef ViewBandeDemoBandsH
|
|
#define ViewBandeDemoBandsH
|
|
//---------------------------------------------------------------------------
|
|
#include <Classes.hpp>
|
|
#include <Controls.hpp>
|
|
#include <StdCtrls.hpp>
|
|
#include <Forms.hpp>
|
|
#include "cxButtons.hpp"
|
|
#include "cxLookAndFeelPainters.hpp"
|
|
#include "cxListBox.hpp"
|
|
//---------------------------------------------------------------------------
|
|
class TViewBandeDemoBandsForm : public TForm
|
|
{
|
|
__published: // IDE-managed Components
|
|
TcxListBox *lbBands;
|
|
TcxButton *btnOK;
|
|
TcxButton *btnCancel;
|
|
private: // User declarations
|
|
public: // User declarations
|
|
__fastcall TViewBandeDemoBandsForm(TComponent* Owner);
|
|
};
|
|
//---------------------------------------------------------------------------
|
|
extern PACKAGE TViewBandeDemoBandsForm *ViewBandeDemoBandsForm;
|
|
//---------------------------------------------------------------------------
|
|
#endif
|