吾爱破解 - 52pojie.cn

 找回密码
 注册[Register]

QQ登录

只需一步,快速开始

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

[求助] 这次得到了热键的名称但是反着的

[复制链接]
冥界3大法王 发表于 2021-10-4 13:59
image.png
目的: 按键后,我就要得到 【字符串型的Ctrl+Shift+Alt+1】
[Delphi] 纯文本查看 复制代码
unit Unit1;

interface

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

type
  TForm1 = class(TForm)
    HotKey1: THotKey;
    Edit1: TEdit;
    Edit2: TEdit;
    HotKey2: THotKey;
    procedure HotKey1Change(Sender: TObject);
  private
    { Private declarations }
  public
    { Public declarations }
  end;

var
  Form1: TForm1;

implementation

{$R *.dfm}

uses
  Menus;

procedure TForm1.HotKey1Change(Sender: TObject);
var
  Text: string;
begin
  Edit1.Text := inttostr(HotKey1.HotKey); //获取得到的是对应的数值


  Text := ShortcutToText(Hotkey1.Hotkey);
  Edit2.Text := Text;                 //这次得到了热键的名称但是反着的
end;

end.

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

lies2014 发表于 2021-10-4 14:54
你要看源代码啊,ShortcutToText的显示顺序就是这样的,你要自己改成你想要的
[Delphi] 纯文本查看 复制代码
function ShortCutToTextGeneric(ShortCut: TShortCut; Localized: boolean): string;
var
  Name: string;
begin
  Result := '';
  Name := KeyCodeToKeyString(ShortCut and $FF, Localized);
  if Name <> '' then
  begin
    if ShortCut and scShift <> 0 then Result := Result + KeyCodeToKeyString(scShift, Localized);
    if ShortCut and scCtrl <> 0 then Result := Result + KeyCodeToKeyString(scCtrl, Localized);
    if ShortCut and scMeta <> 0 then Result := Result + KeyCodeToKeyString(scMeta, Localized);
    if ShortCut and scAlt <> 0 then Result := Result + KeyCodeToKeyString(scAlt, Localized);
    Result := Result + Name;
  end;
end;

function ShortCutToText(ShortCut: TShortCut): string;
begin
  Result:=ShortCutToTextGeneric(ShortCut, true);
end;

免费评分

参与人数 1吾爱币 +1 收起 理由
冥界3大法王 + 1 佩服,你们都会追本溯源;膜拜 1 UP !

查看全部评分

头像被屏蔽
yulinsoft 发表于 2021-10-4 17:04
头像被屏蔽
tl;dr 发表于 2021-10-4 17:20
您需要登录后才可以回帖 登录 | 注册[Register]

本版积分规则

返回列表

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

GMT+8, 2024-11-25 22:52

Powered by Discuz!

Copyright © 2001-2020, Tencent Cloud.

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