unit Unit1;<br><br>interface<br><br>uses<br> Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,<br> Dialogs;<br><br>type<br> TForm1 = class(TForm)<br> ApplicationEvents1: TApplicationEvents;<br> procedure ApplicationEvents1SettingChange(Sender: TObject;<br> Flag: Integer; const Section: String; var Result: Integer);<br> private<br> { Private declarations }<br> public<br> { Public declarations }<br> end;<br><br>var<br> Form1: TForm1;<br><br>implementation<br><br>{$R *.dfm}<br><br>procedure TForm1.ApplicationEvents1SettingChange(Sender: TObject;<br> Flag: Integer; const Section: String; var Result: Integer);<br>begin<br>//在这二<br>end;<br>