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

📄 frmstatistics.pas

📁 Mailserver Source code - Delphi. Simple Mail server source code. SMTP and POP3 protocols.
💻 PAS
字号:
unit FrmStatistics;

interface

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

type
  TFrmStatistics1 = class(TForm)
    Panel5: TPanel;
    HintLabel: TLabel;
    Image1: TImage;
    Bevel1: TBevel;
    Bevel2: TBevel;
    BitBtn1: TBitBtn;
    Label1: TLabel;
  private
    { Private declarations }
    function  GetShowText:string;
    procedure SetShowText(AStr:string);
  public
    { Public declarations }
    property ShowText:string read  GetShowText write SetShowText;
  end;

var
  FrmStatistics1: TFrmStatistics1;

implementation

{$R *.dfm}

function TFrmStatistics1.GetShowText:string;
begin
  result:=Label1.Caption;
end;

procedure  TFrmStatistics1.SetShowText(AStr:string);
begin
  Label1.Caption:=AStr;
end;

end.

⌨️ 快捷键说明

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