吾爱破解 - 52pojie.cn

 找回密码
 注册[Register]

QQ登录

只需一步,快速开始

查看: 1053|回复: 3
收起左侧

[求助] Delphi引入的单元文件(uses 部分) 有什么技巧知道它在哪个单元模块中?

[复制链接]
冥界3大法王 发表于 2022-7-1 09:49


例如下面的代码中:
unit Unit4;

interface

uses
  Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants,
  System.Classes, Vcl.Graphics, Vcl.Controls, Vcl.Forms, Vcl.Dialogs,
  Vcl.ComCtrls;

type
  TForm4 = class(TForm)
    HotKey: THotKey;
    procedure CmdSetClick(Sender: TObject);
    procedure FormCreate(Sender: TObject);
    procedure FormDestroy(Sender: TObject);
  private
    HotKeyID: Integer;
    procedure SetKey();
    procedure HotKeyDown(var Msg: TWMHotKey); message WM_HOTKEY; //热键消息
  public
  end;

var
  Form4: TForm4;

implementation

{$R *.dfm}

uses
  menus, inifiles;

procedure TForm4.FormCreate(Sender: TObject);
begin
  SetKey; //注册热键
end;

procedure TForm4.FormDestroy(Sender: TObject);
begin
  UnregisterHotKey(Handle, HotKeyID);
  DeleteAtom(HotKeyID);
end;

procedure TForm4.HotKeyDown(var Msg: TWMHotKey);
begin
  if (Msg.HotKey = HotKeyID) then
  begin
   //
  end;
end;

procedure TForm4.SetKey();
var
  Sc: TShortCut;
  Modifiers, vk: Word;
  Shift: TShiftState;
  Str: string;
begin
  {注册热键}
  HotKeyID := GlobalAddAtom('HotKeyID') - $C000;
  with TIniFile.Create('Config.ini') do
  begin
    Modifiers := 0;
    vk := 0;
    Str := ReadString('Config', 'CustomKey', 'Ctrl+F11');
    if Str = '' then
      Str := 'Ctrl+F11';
    Sc := TextToShortCut(Str);
    ShortCutToKey(Sc, vk, Shift);
    if ssShift in Shift then
      Modifiers := Modifiers or MOD_SHIFT;
    if ssCtrl in Shift then
      Modifiers := Modifiers or MOD_CONTROL;
    if ssAlt in Shift then
      Modifiers := Modifiers or MOD_ALT;
    Free;
  end;
  UnregisterHotKey(Handle, HotKeyID);
  RegisterHotKey(Handle, HotKeyID, Modifiers, vk);
end;

procedure TForm4.CmdSetClick(Sender: TObject);
var
  F: TFrmSet;===> 这行报错了,我用CnPack的单元引入工具时,出来长长的ListBox选择这么多,我哪知是哪一个呢?  有什么技巧吗?
我不认识它,它更不认识我


  Ini: TIniFile;
  BB: Boolean;
begin
  F := TFrmSet.Create(self);
  Ini := TIniFile.Create('Config.ini');
  try
    with F do
    begin
   //读到INI热键参数到 hotkey 控件中
      HotKey.Hint := Ini.ReadString('Config', 'CustomKey', 'Ctrl+F11');
      if HotKey.Hint = '' then
        HotKey.Hint := 'Ctrl+F11';
      HotKey.HotKey := TextToShortCut(HotKey.Hint);
      HotKey.Hint := '';
      if ShowModal = mrok then
      begin
        Ini.WriteString('Config', 'CustomKey', ShortCutToText(HotKey.HotKey)); //写入新的热键设置
        SetKey; //生效新的热键
      end;
    end;
  finally
    Ini.Free;
    F.Free;
  end;
end;

end.

发帖前要善用论坛搜索功能,那里可能会有你要找的答案或者已经有人发布过相同内容了,请勿重复发帖。

 楼主| 冥界3大法王 发表于 2022-7-1 10:00
别跟我说 Ctrl+ 类型 点击
貌似没加 uses 类型的 ,它自己就不识认。
kenxy 发表于 2022-7-1 10:06
kenxy 发表于 2022-7-4 09:58
您需要登录后才可以回帖 登录 | 注册[Register]

本版积分规则

返回列表

RSS订阅|小黑屋|处罚记录|联系我们|吾爱破解 - LCG - LSG ( 京ICP备16042023号 | 京公网安备 11010502030087号 )

GMT+8, 2024-11-25 10:38

Powered by Discuz!

Copyright © 2001-2020, Tencent Cloud.

快速回复 返回顶部 返回列表