吾爱破解 - 52pojie.cn

 找回密码
 注册[Register]

QQ登录

只需一步,快速开始

查看: 2115|回复: 7
收起左侧

[求助] 如何把按键显示在最顶层窗口上(屏幕最顶上)

[复制链接]
冥界3大法王 发表于 2020-5-19 08:57


求改Delphi实现代码:
以下是显示在Delphi窗体内的代码:
貌似不支持组合键显示

[Delphi] 纯文本查看 复制代码
unit Unit2;

interface

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

type
  TForm2 = class(TForm)
    procedure FormCreate(Sender: TObject);
  private
    { Private declarations }
    procedure MyMsg(var msg: TWMKeyDown); message WM_KEYDOWN;
  public
    { Public declarations }
  end;

var
  Form2: TForm2;

implementation

{$R *.dfm}

procedure TForm2.FormCreate(Sender: TObject);
begin
  Canvas.Font.Size := 24;
  Canvas.Font.Style := [fsBold];
  Canvas.Font.Color := clRed;
  Canvas.Brush.Color := clWhite;
end;

procedure TForm2.MyMsg(var msg: TWMKeyDown);
var
  buf: array[0..255] of Char;
  rect: TRect;
  str: string;
begin
  {获取}
  GetKeyNameText(msg.KeyData, buf, Length(buf));
  {画出来}
  str := buf;
  rect := ClientRect;
  Canvas.FillRect(rect);
  Canvas.TextRect(rect, str, [tfSingleLine, tfCenter, tfVerticalCenter]);
  inherited;
end;

end.

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

cyl279 发表于 2020-5-19 09:16
感谢分享,好久没坐沙发了

免费评分

参与人数 1吾爱币 -5 收起 理由
苏紫方璇 -5 本区请勿发布与问题无关的回复

查看全部评分

精于勤 发表于 2020-5-19 09:35
路过打酱油

免费评分

参与人数 1吾爱币 -5 收起 理由
苏紫方璇 -5 本区请勿发布与问题无关的回复

查看全部评分

八月不到底 发表于 2020-5-19 09:41
大佬讲话太深奥了

免费评分

参与人数 1吾爱币 -5 收起 理由
苏紫方璇 -5 本区请勿发布与问题无关的回复

查看全部评分

kuqideyanlei 发表于 2020-5-19 09:49
能不能把你变态版x64dbg发我一份啊???
沐.神 发表于 2020-5-19 10:14
我也想要你的变态版x64dbg
shghe 发表于 2020-5-19 10:23
法王大仙求变态版x64dbg~~~~~~~
kkw2011 发表于 2020-5-19 10:49
能不能把你变态版x64dbg发我一份啊???
您需要登录后才可以回帖 登录 | 注册[Register]

本版积分规则

返回列表

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

GMT+8, 2025-1-15 18:01

Powered by Discuz!

Copyright © 2001-2020, Tencent Cloud.

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