我创建一个浏览器:
browser = cef.CreateBrowserSync(url=os.path.dirname(os.path.abspath(__file__))+'\\gui.html', window_title="Title")
有什么方法可以随时隐藏和显示窗口吗?
我创建一个浏览器:
browser = cef.CreateBrowserSync(url=os.path.dirname(os.path.abspath(__file__))+'\\gui.html', window_title="Title")
有什么方法可以随时隐藏和显示窗口吗?
如果您使用“wxpython.py”示例,那么您可以调用MainFrame.Hide()
隐藏窗口并Show()
显示它。
如果使用“hello_world.py”示例,那么您需要使用例如 ctypes 进行本机操作系统调用。对于 Windows,代码为:
import ctypes
SW_SHOW = 5
SW_HIDE = 0
hwnd = browser.GetWindowHandle()
ctypes.windll.user32.ShowWindow(hwnd, SW_HIDE)
ctypes.windll.user32.ShowWindow(hwnd, SW_SHOW)