⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 settings.pas

📁 小程序 可以任意的拖动 会找到一定的水平线 右击退出即可
💻 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 + -