git-svn-id: https://192.168.0.254/svn/Componentes.Terceros.DevExpressVCL@8 05c56307-c608-d34a-929d-697000501d7a
27 lines
895 B
C++
27 lines
895 B
C++
//---------------------------------------------------------------------------
|
|
|
|
#include <vcl.h>
|
|
#pragma hdrstop
|
|
|
|
#include "BandedDemoBands.h"
|
|
//---------------------------------------------------------------------------
|
|
#pragma package(smart_init)
|
|
#pragma link "cxButtons"
|
|
#pragma link "cxContainer"
|
|
#pragma link "cxControls"
|
|
#pragma link "cxListBox"
|
|
#pragma link "cxLookAndFeelPainters"
|
|
#pragma resource "*.dfm"
|
|
TBandedDemoBandsForm *BandedDemoBandsForm;
|
|
//---------------------------------------------------------------------------
|
|
__fastcall TBandedDemoBandsForm::TBandedDemoBandsForm(TComponent* Owner)
|
|
: TForm(Owner)
|
|
{
|
|
}
|
|
//---------------------------------------------------------------------------
|
|
void __fastcall TBandedDemoBandsForm::btnCancelClick(TObject &Sender)
|
|
{
|
|
Close();
|
|
}
|
|
//---------------------------------------------------------------------------
|