Componentes.Terceros.DevExp.../official/x.26/ExpressNavBar/Demos/Delphi/FeaturesDemo/FeaturesDialog.pas
2007-09-09 11:27:27 +00:00

34 lines
577 B
ObjectPascal

unit FeaturesDialog;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls, ComCtrls, ExtCtrls;
type
TfmFeaturesDailog = class(TForm)
btnClose: TButton;
Panel1: TPanel;
RichEdit1: TRichEdit;
procedure btnCloseClick(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
fmFeaturesDailog: TfmFeaturesDailog;
implementation
{$R *.dfm}
procedure TfmFeaturesDailog.btnCloseClick(Sender: TObject);
begin
Close;
end;
end.