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

Delphi控件源码

开发平台:

Delphi

  1. unit ScaleF;
  2. interface
  3. uses
  4.   SysUtils, Qt, Classes, QGraphics, QControls,
  5.   QForms, QDialogs, QStdCtrls, Spin, QMask, QComCtrls;
  6. type
  7.   TForm1 = class(TForm)
  8.     ScaleButton: TButton;
  9.     RestoreButton: TButton;
  10.     Label1: TLabel;
  11.     SpinEdit1: TSpinEdit;
  12.     procedure ScaleButtonClick(Sender: TObject);
  13.     procedure RestoreButtonClick(Sender: TObject);
  14.   private
  15.     { Private declarations }
  16.     AmountScaled: Integer;
  17.   public
  18.     { Public declarations }
  19.   end;
  20. var
  21.   Form1: TForm1;
  22. implementation
  23. {$R *.xfm}
  24. procedure TForm1.ScaleButtonClick(Sender: TObject);
  25. begin
  26.   AmountScaled := SpinEdit1.Value;
  27.   ScaleBy (AmountScaled, 100);
  28.   ScaleButton.Enabled := False;
  29.   RestoreButton.Enabled := True;
  30. end;
  31. procedure TForm1.RestoreButtonClick(Sender: TObject);
  32. begin
  33.   ScaleBy (100, AmountScaled);
  34.   ScaleButton.Enabled := True;
  35.   RestoreButton.Enabled := False;
  36. end;
  37. end.