对于从XE7转换的项目,Firemonkey提示在Delphi Seattle中不起作用

时间:2015-11-25 10:56:01

标签: delphi firemonkey hint delphi-10-seattle

我在Delphi Seattle中打开了this演示,它的工作方式应该如此。 当我打开我的程序,并包含演示表单时,它不起作用。我无法在控件中添加提示。

    procedure TMainForm.FormCreate(Sender: TObject);
      application.ShowHint:=true;
      application.OnHint :=OnApplicationHint;
    end;

    procedure TMainForm.OnApplicationHint(Sender: TObject);
    begin
      caption := (Application.Hint);
    end;

My program is converted from XE7 to Seattle. So what could be the difference?

我在哪里可以找到实际显示提示的代码?

编辑:我找到了显示提示的代码。以下内容适用于新的XE-10 Seattle程序,但不适用于从XE-7转换而来的程序。

var
  LToolInfo: TOOLINFO;

  FNativeControlHandle,
  FToolTipHandle: HWND;
begin
 FNativeControlHandle := WindowHandleToPlatform(form1.Handle).Wnd;
  if FNativeControlHandle <> 0 then begin
    FToolTipHandle := CreateWindowEx(0, TOOLTIPS_CLASS, nil, WS_POPUP or TTS_ALWAYSTIP, 0, 0, 300, 300,FNativeControlHandle, 0, hInstance, nil);


    SetWindowPos(FToolTipHandle, HWND_TOPMOST, 0, 0, 0, 0, SWP_NOMOVE or SWP_NOSIZE or SWP_NOACTIVATE);

    FillChar(LToolInfo, SizeOf(TOOLINFO), 0);
    LToolInfo.cbSize := SizeOf(TOOLINFO);
    LToolInfo.uFlags := TTF_SUBCLASS or TTF_IDISHWND or TTF_PARSELINKS;
    LToolInfo.hinst := hInstance;
    LToolInfo.hwnd := FNativeControlHandle;
    LToolInfo.uId := FNativeControlHandle;
    LToolInfo.lpszText := PWideChar('Hint');


    SendMessage(FToolTipHandle, TTM_ADDTOOL, 0, LPARAM(@LToolInfo));
    SendMessage(FToolTipHandle, TTM_ACTIVATE, NativeInt(True), LPARAM(@LToolInfo));
  end;

1 个答案:

答案 0 :(得分:1)

我在XE7转换后的Delphi Seattle无法使用"Activate runtime themes"的程序中遇到类似问题。

当我打开复选框Project --> Options --> Application(&#34; Laufzeit-Themes aktivieren&#34;在我的德语版本中)({{1}})时,会出现提示!