28 lines
515 B
ObjectPascal
28 lines
515 B
ObjectPascal
|
|
unit ViewBandeDemoBands;
|
||
|
|
|
||
|
|
interface
|
||
|
|
|
||
|
|
uses
|
||
|
|
Windows, Messages, Classes, Graphics, Controls, Forms,
|
||
|
|
Dialogs, StdCtrls, cxButtons, cxListBox, cxLookAndFeelPainters,
|
||
|
|
cxControls, cxContainer;
|
||
|
|
|
||
|
|
type
|
||
|
|
TViewBandeDemoBandsForm = class(TForm)
|
||
|
|
lbBands: TcxListBox;
|
||
|
|
btnOK: TcxButton;
|
||
|
|
btnCancel: TcxButton;
|
||
|
|
procedure btnCancelClick(Sender: TObject);
|
||
|
|
end;
|
||
|
|
|
||
|
|
implementation
|
||
|
|
|
||
|
|
{$R *.dfm}
|
||
|
|
|
||
|
|
procedure TViewBandeDemoBandsForm.btnCancelClick(Sender: TObject);
|
||
|
|
begin
|
||
|
|
Close;
|
||
|
|
end;
|
||
|
|
|
||
|
|
end.
|