在下面两个事件中写入代码,就可以达到目的:
...
const
IniF = 'D:\Test.Ini';
...
procedure TForm1.FormDestroy(Sender: TObject);
var
ini: TIniFile;
cl: TColor;
begin
cl := Form1.Color;
ini := TIniFIle.Create(INiF);
ini.WriteInteger('System', 'BackColor', cl);
ini.Free;
end;
procedure TForm1.FormCreate(Sender: TObject);
var
ini: TIniFile;
cl: TColor;
begin
ini := TIniFile.Create(IniF);
cl := ini.ReadInteger('System', 'BackColor', clBtnFace);
ini.Free;
Form1.Color := cl;
end;