I use tkinter to do GUI. When use messagebox, that can not see title and showerror icon is a file, just like that:
This is my env:
- macOS / windows 10
- python 3.8.13
- tk 8.6
And this is my code
import tkinter
from tkinter import messagebox
window = tkinter.Tk()
window.withdraw()
messagebox.showerror(title="error title", message="for test message")
window.destroy()
I want to see title and error icon, just like windows system. How can I do to fix this progrem, thanks.