更改 tkinter 消息框的大小

bto*_*ers 7 python tkinter messagebox

在 python 中,我尝试更改 tkinter 消息框窗口的宽度,以便文本可以适合一行。

import tkinter as tk
from tkinter import messagebox

root = tk.Tk()
messagebox.showinfo("info","this information goes beyond the width of the messagebox")
root.mainloop()
Run Code Online (Sandbox Code Playgroud)

Cha*_*hak 4

无法调整消息框的大小。

何时使用消息小部件

该小部件可用于使用单一字体显示短文本消息。您通常可以使用普通标签来代替。如果您需要以多种字体显示文本,请使用文本小部件。-效果机器人

另请参阅: