如何嚮應用程序發送提示消息? 我試着用一個小測試:如何通過代碼發送提示消息?
TForm1 = class(TForm)
ApplicationEvents1: TApplicationEvents;
Memo1: TMemo;
procedure ApplicationEvents1Hint(Sender: TObject);
procedure FormMouseMove(Sender: TObject; Shift: TShiftState; X, Y: Integer);
private
{ Private declarations }
public
{ Public declarations }
end;
procedure TForm1.ApplicationEvents1Hint(Sender: TObject);
begin
Memo1.Lines.Add(Application.Hint);
end;
procedure TForm1.FormMouseMove(Sender: TObject; Shift: TShiftState; X, Y: Integer);
begin
Application.Hint := 'Hello';
end;
觀測Memo1的線條,似乎是一個空的提示消息發送,每次我設置「你好」。
在真實的情況下,空提示信息會隱藏自己的提示消息,我不明白我在做什麼錯了,這是錯誤的做法?
感謝您的明確解釋。我會記住這一點。 – ExDev