tkinter - Basic Python Messagebox size change -
how change size of window message-box appears in? built box myself allow me change option "thanks".
here code far:
def messagewindow(): win = toplevel() win.title('warning') message = "this delete stuff" label(win, text=message).pack() button(win, text='thanks!', command=win.destroy).pack()
Comments
Post a Comment