一些比較專業的軟件都有自動保存窗口運行狀態的功能,具體的方法都是在窗口關閉前將其狀態保存到注冊表中或ini文件中,而這些代碼一般都是相同的,所以可以將其集中在一起,重復使用。本文將相應的代碼用一個控件TPosition來實現,使用時只要將此控件放到相應的Form上即可,不需要增加任何代碼,從而實現了“零”代碼保存窗口運行狀態。
下面是這個控件的主要實現文件Position.pas的內容,包括相應的注釋。為了保持注冊表的整潔,這裡把信息保存到ini文件中。
unit Position;
interface
uses
Forms, Classes, SysUtils, Windows, IniFiles;
type
//TPosition是不可視控件,由TComponent繼承
TPosition = class(TComponent)
private
//用此變量保存父窗口的OnDestroy事件
FOnDestroy: TNotifyEvent;
//用此函數替換父窗口的OnDestroy事件
procedure FormDestroy(Sender: TObject);
protected
//在控件加載時恢復父窗口狀態
procedure Loaded; override;
end;
//恢復窗口位置函數
procedure ReadFormPos(Form:TForm);
//保存窗口位置函數
procedure SaveFormPos(Form:TForm);
//控件注冊函數
procedure Register;
implementation
//連接此控件的圖標
{$R Position.Dcr}
//恢復窗口位置函數,窗口狀態存放在ini文件中。
procedure ReadFormPos(Form : TForm);
var
RegFile : TIniFile;
SectName : string;
begin
//ini文件中存放Form信息的節名稱
SectName := Form.Name + ' Position';
//打開與可執行文件名相同的ini文件
RegFile := TIniFile.Create(
ChangeFileExt(Application.ExeName,'.ini'));
//恢復窗口狀態
with Form do begin
Left := RegFile.ReadInteger(SectName,'Left',Left);
Top := RegFile.ReadInteger(SectName,'Top',Top);
Width := RegFile.ReadInteger(SectName,'Width',Width);
Height := RegFile.ReadInteger(SectName,'Height',Height);
WindowState := TWindowstate(
RegFile.ReadInteger(SectName,'Windowstate',0));
end;
//關閉ini文件
RegFile.Free;
end;
//保存窗口位置函數
procedure SaveFormPos(Form:TForm);
var
RegFile : TIniFile;
SectName : string;
begin
SectName := Form.Name + ' Position';
RegFile := TIniFile.Create(
ChangeFileExt(Application.ExeName,'.ini'));
with Form do begin
RegFile.WriteInteger(SectName,'Windowstate',
integer(Windowstate));
//最大化時,不保存窗口位置
if Windowstate <> wsMaximized then begin
RegFile.WriteInteger(SectName,'Left',Left);
RegFile.WriteInteger(SectName,'Top',Top);
RegFile.WriteInteger(SectName,'Width',Width);
RegFile.WriteInteger(SectName,'Height',Height);
end;
//當要保存狀態的窗口是程序主窗口時,要特殊處理。因為主窗口收到最小化消息時,只是把此消息轉至Application處理,本身並不最小化。所以我們要判斷Application的狀態。
if Form = Application.MainForm then begin
if IsIconic(Application.Handle) then begin
Reg File.Write Integer(Sect Name,'Windowstate',
Integer(wsMinimized));
end;
end;
end;
RegFile.Free;
end;
//注冊控件
procedure Register;
begin
RegisterComponents('XDCtls', [TPosition]);
end;
//TPositon類的實現
//當主窗口Destroy時,調用此函數,此函數又調用保存的OnDestoy事件處理函數
procedure TPosition.FormDestroy(Sender: TObject);
begin
SaveFormPos(Owner as TForm);
if Assigned(FOnDestroy) then FOnDestroy(Sender);
end;
//控件加載時,恢復父窗口位置,並對父窗口的OnDestroy事件進行替換
procedure TPosition.Loaded;
begin
inherited Loaded;
//非設計狀態才進行處理
if not (csDesigning in Componentstate) then begin
ReadFormPos(Owner as TForm);
FOnDestroy := (Owner as TForm).OnDestroy;
(Owner as TForm).OnDestroy := FormDestroy;
end;
end;
end.
完成此單元後,新建一個Package,將此單元包含在其中,編譯、安裝即可。資源文件Position.dcr,可自行創建合適的圖標。使用時,只要將這個控件放到相應的Form即可。下面是我測試時的窗體代碼,不用加任何語句就可以自動保存窗體狀態。
unit Unit1;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics,
Controls, Forms, Dialogs,Position;
type
TForm1 = class(TForm)
Position1: TPosition;
private
public
end;
var
Form1: TForm1;
implementation
{$R *.DFM}
end.