当前位置: 首页 > 工具软件 > CEF Python > 使用案例 >

tkinter使用cefpython库_Python3.7 tkinter中嵌入网页(WebView),需要引入cefpython3

卫财
2023-12-01

首先需要安装cefpython3

pip install cefpython3

代码如下,注意cefpython3不能和tkinterUI运行在同一个线程

from cefpython3 import cefpython as cef

from tkinter import *

import threading

import sys

# cefpython3 目前只支持python3.7,高版本Python不兼容

def embed_browser_thread(frame, _rect):

sys.excepthook = cef.ExceptHook

window_info = cef.WindowInfo(frame.winfo_id())

window_info.SetAsChild(frame.winfo_id(), _rect)

cef.Initialize()

cef.CreateBrowserSync(window_info, url='http://www.baidu.com')

cef.MessageLoop()

if __name__ == '__main__':

root = Tk()

root.geometry("800x600")

frame1 = Frame(root, bg='blue', height=200)

frame1.pack(side=TOP, fill=X)

frame2 = Frame(root, bg='white', height=200)

frame2.pack(side=TOP, fill=X)

rect = [0, 0, 800, 200]

thread = threading.Thread(target=embed_browser_thread, args=(frame1, rect))

thread.start()

root.mainloop()

 类似资料: