git-svn-id: https://192.168.0.254/svn/Componentes.Terceros.DevExpressVCL@21 05c56307-c608-d34a-929d-697000501d7a
31 lines
1.1 KiB
C++
31 lines
1.1 KiB
C++
//---------------------------------------------------------------------------
|
|
|
|
#ifndef BandedDemoBandsH
|
|
#define BandedDemoBandsH
|
|
//---------------------------------------------------------------------------
|
|
#include <Classes.hpp>
|
|
#include <Controls.hpp>
|
|
#include <StdCtrls.hpp>
|
|
#include <Forms.hpp>
|
|
#include "cxButtons.hpp"
|
|
#include "cxContainer.hpp"
|
|
#include "cxControls.hpp"
|
|
#include "cxListBox.hpp"
|
|
#include "cxLookAndFeelPainters.hpp"
|
|
//---------------------------------------------------------------------------
|
|
class TBandedDemoBandsForm : public TForm
|
|
{
|
|
__published: // IDE-managed Components
|
|
TcxListBox *lbBands;
|
|
TcxButton *btnOK;
|
|
TcxButton *btnCancel;
|
|
void __fastcall btnCancelClick(TObject &Sender);
|
|
private: // User declarations
|
|
public: // User declarations
|
|
__fastcall TBandedDemoBandsForm(TComponent* Owner);
|
|
};
|
|
//---------------------------------------------------------------------------
|
|
extern PACKAGE TBandedDemoBandsForm *BandedDemoBandsForm;
|
|
//---------------------------------------------------------------------------
|
|
#endif
|