gpt4 book ai didi

delphi - 我无法在打开和保存对话框中获得 Delphi 上下文相关帮助

转载 作者:行者123 更新时间:2023-12-03 14:51:12 26 4
gpt4 key购买 nike

我有一个带有 CHM 帮助文件的 Delphi 2006 应用程序。一切正常,只是我无法获得任何连接到 TOpenDialog 和 TSaveDialog 上的“帮助”按钮的帮助。

下面显示了演示这一点的简单程序。单击按钮 2 打开帮助文件并显示正确的页面。单击按钮 1 打开对话框,但单击对话框中的帮助按钮没有任何效果。

unit Unit22;

interface

uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls,
HTMLHelpViewer ;

type
TForm22 = class(TForm)
OpenDialog1: TOpenDialog;
Button1: TButton;
Button2: TButton;
procedure Button1Click(Sender: TObject);
procedure FormCreate(Sender: TObject);
procedure Button2Click(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;

var
Form22: TForm22;

implementation

{$R *.dfm}

procedure TForm22.Button1Click(Sender: TObject);
begin
OpenDialog1.HelpContext := 10410 ;
OpenDialog1.Execute ;
end;

procedure TForm22.Button2Click(Sender: TObject);
begin
Application.HelpContext (10410) ;
end;

procedure TForm22.FormCreate(Sender: TObject);
begin
Application.HelpFile := 'c:\help.chm' ;
end;

end.

最佳答案

使用默认设置时,TOpenDialog 的帮助消息处理不起作用(您应该将其提交到 Quality Central)。

具体原因是因为 Windows 将帮助消息发送到对话框的父级,而不是对话框本身,因此除非您的表单设置为处理它,否则它只会被忽略。

修复方法是设置 Application.ModalPopupMode pmAuto 而不是默认的 pmNone。您可以在正常启动代码期间或在显示对话框之前执行一次此操作。设置完成后,Delphi 将创建一个中间窗口 (Dialogs.pas::TRedirectorWindow),它可以正确处理消息。

如果由于某种原因您无法更改 ModalPopupMode,那么正如我所说,您需要处理表单上的消息:

TForm22 = class(TForm)
...
procedure WndProc(var Message: TMessage); override;
end;

initialization

var
HelpMsg: Cardinal;

procedure TForm22.WndProc(var Message: TMessage);
begin
inherited;
if (Message.Msg = HelpMsg) and (OpenDialog1.Handle <> 0) then
Application.HelpContext(OpenDialog1.HelpContext);
end;

initialization
HelpMsg := RegisterWindowMessage(HelpMsgString);
end.

关于delphi - 我无法在打开和保存对话框中获得 Delphi 上下文相关帮助,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3938017/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com