Unit2.pas
上传用户:daoqigc
上传日期:2021-04-20
资源大小:2795k
文件大小:0k
源码类别:

RichEdit

开发平台:

Delphi

  1. unit Unit2;
  2. interface
  3. uses
  4.   Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
  5.   StdCtrls, ExtCtrls;
  6. type
  7.   TForm2 = class(TForm)
  8.     Button1: TButton;
  9.     Button2: TButton;
  10.     Panel1: TPanel;
  11.     Edit1: TEdit;
  12.     Label1: TLabel;
  13.   private
  14.     { Private declarations }
  15.   public
  16.     { Public declarations }
  17.   end;
  18. var
  19.   Form2: TForm2;
  20. implementation
  21. {$R *.DFM}
  22. end.