git-svn-id: https://192.168.0.254/svn/Componentes.Terceros.DevExpressVCL@26 05c56307-c608-d34a-929d-697000501d7a
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.
|