softnote.pas
来自「完整的delphi书籍源代码,大家有空的时候自己慢慢看看」· PAS 代码 · 共 39 行
PAS
39 行
unit SoftNote;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, ExtCtrls, jpeg, StdCtrls;
type
TSoftNoteFrm = class(TForm)
SoftNote_Timer: TTimer;
SoftNote_Image: TImage;
procedure SoftNote_TimerTimer(Sender: TObject);
procedure SoftNote_ImageClick(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
SoftNoteFrm: TSoftNoteFrm;
implementation
{$R *.dfm}
procedure TSoftNoteFrm.SoftNote_TimerTimer(Sender: TObject);
begin
close;
end;
procedure TSoftNoteFrm.SoftNote_ImageClick(Sender: TObject);
begin
close;
end;
end.
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?