delphi WinAPI: GetKeyNameText - 根据键盘消息获取按键名称  
官方Delphi 学习QQ群: 682628230(三千人)
频道

delphi WinAPI: GetKeyNameText - 根据键盘消息获取按键名称


本例效果图:


unit Unit1;

interface

uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs;

type
TForm1 = class(TForm)
procedure FormCreate(Sender: TObject);
procedure MyMsg(var msg: TWMKeyDown); message WM_KEYDOWN;
end;

var
Form1: TForm1;

implementation

{$R *.dfm}

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

procedure TForm1.MyMsg(var msg: TWMKeyDown);
var
buf: array[0..31] 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.


推荐分享
图文皆来源于网络,内容仅做公益性分享,版权归原作者所有,如有侵权请告知删除!
 

Copyright © 2014 DelphiW.com 开发 源码 文档 技巧 All Rights Reserved
晋ICP备14006235号-8 晋公网安备 14108102000087号

执行时间: 0.081775188446045 seconds