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

📄 hkerror.pas

📁 Delphi 开发的的热键操作 很值得看的
💻 PAS
字号:
unit hkError;

interface

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

type
  TfrmHotkeyError = class(TForm)
    lblHotkeyUsed: TLabel;
    btnCancel: TButton;
    btnOk: TButton;
    lblEntry: TLabel;
    lblDescription: TLabel;
  private
    procedure SetConflictingEntry(Value: String);
    procedure SetDescription(Value: String);
  public
    property ConflictingEntry: String write SetConflictingEntry;
    property Description: String write SetDescription;
    { Public declarations }
  end;

var
  frmHotkeyError: TfrmHotkeyError;

implementation

{$R *.DFM}
procedure TfrmHotkeyError.SetConflictingEntry(Value: String);
begin
  lblEntry.Caption := Value;
end;

procedure TfrmHotkeyError.SetDescription(Value: String);
begin
  lblDescription.Caption := Value;
end;

end.

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -