git-svn-id: https://192.168.0.254/svn/Componentes.Terceros.DevExpressVCL@8 05c56307-c608-d34a-929d-697000501d7a
28 lines
506 B
ObjectPascal
28 lines
506 B
ObjectPascal
unit BandedDemoBands;
|
|
|
|
interface
|
|
|
|
uses
|
|
Windows, Messages, Classes, Graphics, Controls, Forms,
|
|
Dialogs, StdCtrls, cxButtons, cxListBox, cxLookAndFeelPainters,
|
|
cxControls, cxContainer;
|
|
|
|
type
|
|
TBandedDemoBandsForm = class(TForm)
|
|
lbBands: TcxListBox;
|
|
btnOK: TcxButton;
|
|
btnCancel: TcxButton;
|
|
procedure btnCancelClick(Sender: TObject);
|
|
end;
|
|
|
|
implementation
|
|
|
|
{$R *.dfm}
|
|
|
|
procedure TBandedDemoBandsForm.btnCancelClick(Sender: TObject);
|
|
begin
|
|
Close;
|
|
end;
|
|
|
|
end.
|