TextPF.pas
上传用户:fh681027
上传日期:2022-07-23
资源大小:1959k
文件大小:1k
源码类别:

Delphi控件源码

开发平台:

Delphi

  1. unit TextPF;
  2. interface
  3. uses
  4.   Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
  5.   StdCtrls;
  6. type
  7.   TForm1 = class(TForm)
  8.     Edit1: TEdit;
  9.     Button1: TButton;
  10.     CheckBox1: TCheckBox;
  11.     Label1: TLabel;
  12.     Memo1: TMemo;
  13.     ListBox1: TListBox;
  14.     procedure Button1Click(Sender: TObject);
  15.   private
  16.     { Private declarations }
  17.   public
  18.     { Public declarations }
  19.   end;
  20. var
  21.   Form1: TForm1;
  22. implementation
  23. {$R *.DFM}
  24. type
  25.   TControlHack = class (TControl);
  26. procedure TForm1.Button1Click(Sender: TObject);
  27. var
  28.   I: Integer;
  29. begin
  30.   for I := 0 to ControlCount - 1 do
  31.     TControlHack (Controls [I]).Text :=
  32.       TControlHack (Controls [I]).Text + '*';
  33. end;
  34. end.