delphi中WebBrowser的parent改變時變成空白問題的解決

這段時間在做一個delphi界面打開網頁的功能,且此網頁所在窗口可完整顯示,可縮小到另一個窗口的panel上顯示

可是在改變網頁所在窗口時,WebBrowser控件變成了空白

上網google了半天,終於在csdn上查到了解決方案:

原帖地址:http://bbs.csdn.net/topics/200046109

uses
  SHDocVw, Windows, Controls, Forms, Classes;

type
  TMyWebBrowser = class(TWebBrowser)
  private
  protected
    ActualHandle: HWND;
    procedure CreateWnd; override;
    procedure DestroyWnd; override;
  public
  end;


{ TMyWebBrowser }
procedure TMyWebBrowser.CreateWnd;
begin
  if (ActualHandle <> 0) and IsWindow(ActualHandle) then
  begin
    WindowHandle := ActualHandle;
    ActualHandle := 0;
    Windows.SetParent(WindowHandle, TWinControl(Self).Parent.Handle);
    //Force a resize on the client window
    MoveWindow(WindowHandle, 0, 0, TWinControl(Self).Parent.Width,
      TWinControl(Self).Parent.Height, true); 
  end
  else
    inherited;
end;

procedure TMyWebBrowser.DestroyWnd;
begin
  if (csDestroying in ComponentState) then
    inherited
  else
  begin
    //Parent to the Application window which is 0x0 in size
    Windows.SetParent(WindowHandle, Forms.Application.Handle);
    //save the WindowHandle
    ActualHandle := WindowHandle; 
    //set it to 0 so Createwnd will be called again...
    WindowHandle := 0; 
  end;
end;


發佈了30 篇原創文章 · 獲贊 13 · 訪問量 35萬+
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章