在Tkinter HtmlFrame中以退出代码-1073741819(0xC0000005)完成处理

时间:2020-05-09 22:42:55

标签: python python-3.x python-2.x

我正在尝试在tkinter中渲染html标签,但我总是遇到此错误:

该过程以退出代码-1073741819(0xC0000005)完成

我尝试了一切,但每次都失败了

有人可以帮我吗?

这是我的代码:

try:
    import tkinter as tk
except ImportError:
    import Tkinter as tk

from tkinterhtml import HtmlFrame

root = tk.Tk()

frame = HtmlFrame(root, horizontal_scrollbar="auto")
frame.grid(sticky=tk.NSEW)

frame.set_content("""
<html>
<body>
<h1>Hello world!</h1>
</body>
</html>    
""")


root.columnconfigure(0, weight=1)
root.rowconfigure(0, weight=1)
root.mainloop()

0 个答案:

没有答案