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

Delphi控件源码

开发平台:

Delphi

  1. unit SendForm;
  2. interface
  3. uses
  4.   Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
  5.   StdCtrls, Buttons;
  6. type
  7.   TSenderForm = class(TForm)
  8.     Button1: TButton;
  9.     Memo1: TMemo;
  10.     BitBtn1: TBitBtn;
  11.     Button2: TButton;
  12.     CheckBox1: TCheckBox;
  13.     Edit1: TEdit;
  14.     procedure ShowSender(Sender: TObject);
  15.   private
  16.     { Private declarations }
  17.   public
  18.     { Public declarations }
  19.   end;
  20. var
  21.   SenderForm: TSenderForm;
  22. implementation
  23. {$R *.DFM}
  24. procedure TSenderForm.ShowSender(Sender: TObject);
  25. begin
  26.   Memo1.Lines.Add ('Class Name: ' +
  27.     Sender.ClassName);
  28.   if Sender.ClassParent <> nil then
  29.     Memo1.Lines.Add ('Parent Class: ' +
  30.       Sender.ClassParent.ClassName);
  31.   Memo1.Lines.Add ('Instance Size: ' +
  32.     IntToStr (Sender.InstanceSize));
  33.   // if the object is (exactly) of the TButton type
  34.   if Sender.ClassType = TButton then
  35.     Memo1.Lines.Add ('TButton ClassType');
  36.   // if the object is a given object
  37.   if Sender = Button1 then
  38.     Memo1.Lines.Add ('This is Button1');
  39.   if Sender.InheritsFrom (TButton) then
  40.     Memo1.Lines.Add ('Sender inherits from TButton');
  41.   if Sender is TButton then
  42.     Memo1.Lines.Add ('Sender is a TButton');
  43.   // leave a blank line
  44.   Memo1.Lines.Add ('');
  45. end;
  46. end.