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

📄 dfwaboutdialogu.pas

📁 dfw控件组V0.62
💻 PAS
字号:
unit DFWAboutDialogU;

interface

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

type
  TForm1 = class(TForm)
    DFWAboutDialog: TDFWAboutDialog;
    Button1: TButton;
    Label1: TLabel;
    Label2: TLabel;
    Label3: TLabel;
    Label4: TLabel;
    Label5: TLabel;
    Label6: TLabel;
    Label7: TLabel;
    procedure Button1Click(Sender: TObject);
    procedure FormCreate(Sender: TObject);
  private
    { Private-Deklarationen }
  public
    { Public-Deklarationen }
  end;

var
  Form1: TForm1;

implementation

{$R *.DFM}

procedure TForm1.Button1Click(Sender: TObject);
begin
     DFWAboutDialog.Execute;
end;

procedure TForm1.FormCreate(Sender: TObject);
begin
     Label3.caption:=DFWAboutDialog.Version;
     Label5.caption:=DFWAboutDialog.Author;
     Label7.caption:=DFWAboutDialog.EMail;
end;

end.

⌨️ 快捷键说明

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