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