showhit.pas

来自「针对信息进行帅选Delphi筛选系统」· PAS 代码 · 共 34 行

PAS
34
字号
unit Showhit;

interface

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

type
  TshowhitForm = class(TForm)
    Panel: TPanel;
    procedure SetStatus(strStatus:string);
  private
    { Private declarations }
  public
    { Public declarations }
  end;

var
  showhitForm: TshowhitForm;

implementation

{$R *.dfm}

{ TshowhitForm }

procedure TshowhitForm.SetStatus(strStatus: string);
begin
  Panel.Caption:=strStatus;
end;

end.

⌨️ 快捷键说明

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