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

📄 splashscreen_frm.pas

📁 自己写的一个 RSS 阅读器
💻 PAS
字号:
(*
 *   FeedReader
 *   Copyright (C) 2003 The FeedReader Developement Group
 *
 *   This program is free software; you can redistribute it and/or modify
 *   it under the terms of the GNU General Public License as published by
 *   the Free Software Foundation; either version 2 of the License, or
 *   (at your option) any later version.
 *
 *   This program is distributed in the hope that it will be useful,
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *   GNU General Public License for more details.
 *
 *   You should have received a copy of the GNU General Public License
 *   along with this program; if not, write to the Free Software
 *   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 *
 *)
unit SplashScreen_FRM;

interface

uses
  Windows, Forms, ShellAPI,StdCtrls, Graphics, Controls, ExtCtrls, Classes, ComCtrls,
  SysUtils;

type
  TSplashScreen = class(TForm)
    FlatPanel1: TPanel;
    Image1: TImage;
    Label1: TLabel;
    Label5: TLabel;
    statusprogress: TProgressBar;
    lblVersion: TLabel;
    lblVersionNo: TLabel;
    lblBuild: TLabel;
    lblBuildNo: TLabel;
    procedure FormCreate(Sender: TObject);
    procedure FormShow(Sender: TObject);
    procedure visithomepage(Sender: TObject);
  private
    { Private declarations }
  public
    class function Execute: TSplashScreen;
    { Public declarations }
  end;

//var
//  SplashScreen: TSplashScreen;

implementation

Uses
  MProperties,XFunctions;

{$R *.DFM}

procedure TSplashScreen.FormCreate(Sender: TObject);
begin
  {$IFOPT D-}
  Self.FormStyle := fsStayOnTop;
  {$ENDIF}

  lblVersionNo.Caption := GetFileVersion( Application.ExeName, False, False );
  lblBuildNo.Caption := GetFileVersion( Application.ExeName, False, True );
end;

procedure TSplashScreen.FormShow(Sender: TObject);
begin
  ShowWindow(Application.Handle, SW_HIDE);
end;

procedure TSplashScreen.visithomepage(Sender: TObject);
begin
  ShellExecute(ValidParentForm(Self).Handle, nil, PChar('http://www.RssNavigator.com/'), nil, nil, SW_SHOW);
end;

class function TSplashScreen.Execute: TSplashScreen;
begin
  Result := TSplashScreen.Create(nil);
  with Result do
  begin
    Show;
    Update;
  end;
end;

end.

⌨️ 快捷键说明

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