L
LWH006
Unregistered / Unconfirmed
GUEST, unregistred user!
就是那个OnSetNewEnabled方法,在对象观察器中看不到的。
请帮忙看一下,万分感谢!
unit FormPP;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs;
type
TFormPP = class(TForm)
private
FOnSetNewEnabled :TNotifyEvent;
public
{ Public declarations }
published
property OnSetNewEnabled :TNotifyEvent read FOnSetNewEnabled write FOnSetNewEnabled;
end;
var
FormPP: TFormPP;
implementation
{$R *.dfm}
end.
请帮忙看一下,万分感谢!
unit FormPP;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs;
type
TFormPP = class(TForm)
private
FOnSetNewEnabled :TNotifyEvent;
public
{ Public declarations }
published
property OnSetNewEnabled :TNotifyEvent read FOnSetNewEnabled write FOnSetNewEnabled;
end;
var
FormPP: TFormPP;
implementation
{$R *.dfm}
end.