📄 settings.pas
字号:
Unit settings;
Interface
Uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
ExtCtrls, StdCtrls;
Type
TSettingsForm = Class(TForm)
Procedure Timer1Timer(Sender: TObject);
Private
{ Private declarations }
Public
{ Public declarations }
End;
Var
SettingsForm : TSettingsForm;
Implementation
Uses main;
{$R *.DFM}
Procedure TSettingsForm.Timer1Timer(Sender: TObject);
Var w : twincontrol;
Begin
w := FindVCLWindow(Point(mouse.cursorpos.x, mouse.cursorpos.y));
If w <> Nil Then caption := w.Name Else caption := 'nil';
End;
End.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -