Change words on tkinter Messagebox buttons

2019-02-18 01:41发布

I'm using tkinter's "askokcancel" message box to warn the user, with a pop-up, of an irreversible action.

from tkinter import Tk
Tk().withdraw()
from tkinter.messagebox import askokcancel
askokcancel("Warning", "This will delete stuff")

I'd like to change the text of the 'OK' button (from 'OK') to something like 'Delete', to make it less benign-looking.

Is this possible?

If not, what is another way to achieve it? Preferably without introducing any dependancies...

2条回答
Bombasti
2楼-- · 2019-02-18 02:18

Why not open a child window thus creating your own box with your own button like this:

from tkinter import *
def messageWindow():
    win = Toplevel()
    win.title('warning')
    message = "This will delete stuff"
    Label(win, text=message).pack()
    Button(win, text='Delete', command=win.destroy).pack()
root = Tk()
Button(root, text='Bring up Message', command=messageWindow).pack()
root.mainloop()
查看更多
ら.Afraid
3楼-- · 2019-02-18 02:19

No, there is no way to change the text of the buttons for the built-in dialogs.

Your best option is to create your own dialog. It's not very hard to do, and it gives you absolute control over what is in the dialog widget.

查看更多
登录 后发表回答