CBX如何隱藏地址欄 、工具欄

来源:互联网 发布:少女前线mac 10 编辑:程序博客网 时间:2024/06/08 03:35

   //關閉IE的地址欄 、工具欄 僅IE有效
  if assigned(CurrentContext.CurrIE) then
  begin
    CurrentContext.CurrIE.MenuBar := False;
    CurrentContext.CurrIE.AddressBar := False;
    CurrentContext.CurrIE.ToolBar := 0;
    CurrentContext.CurrIE.StatusBar := False;
  end;

原创粉丝点击