📄 softnote.pas
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -