문제

In DCEF 1 (Delphi Chromium Embedded 1), I've used TChromium.Browser.SetFocus(True); to set focus of a browser window, but in DCEF 3 I can't find a way to set focus of this window.

Does anyone know how to set focus of a TChromium browser window in DCEF 3 ?

도움이 되었습니까?

해결책

Thanks for TLama

function CefWndProc(Wnd: HWND; message: UINT; wParam: Integer; lParam: Integer):  Integer; stdcall;
begin
  case message of
    WM_SETFOCUS:
      begin
        if brows <> nil then
          PostMessage(brows.Host.WindowHandle, WM_SETFOCUS, wParam, 0);
        Result := 0;
      end;
    //...
    else
      result := DefWindowProc(Wnd, message, wParam, lParam);
 end;
end;    

//MyChromium.Browser.Host.SetFocus(true);

다른 팁

procedure TWinControl.SetFocus;

TCustomChromium = class(TWinControl, IChromiumEvents)

TChromium is a TWinControl.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top