Componentes.Terceros.DevExp.../official/x.30/ExpressNavBar/Demos/Delphi/FeaturesDemo/FeaturesDialog.pas
2007-12-16 17:06:54 +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.