我对python非常陌生,因此我决定尝试做一些事情来测试它们的工作方式。但是我找不到一种方法来使tkinter按钮上的文本代替2行。这是代码:
import tkinter as tk
hoho = 0
def lul():
global hoho
hoho = hoho + 1
print(hoho)
class Application(tk.Frame):
def __init__(self, master=None):
tk.Frame.__init__(self, master)
self.pack()
self.createWidgets()
def createWidgets(self):
self.hi_there = tk.Button(self, fg="green")
self.hi_there["text"] = "Pressing buttons is fun, isn't it?"
self.hi_there["command"] = self.lel
self.hi_there.pack(side="top")
def lel(self):
lul()
root = tk.Tk()
app = Application(master=root)
app.mainloop()
如果您知道方法,请告诉我!
最佳答案
我希望我理解正确的问题,但是您可以在字符串中使用\n
在按钮上的新行上打印文本。
import tkinter as tk
hoho = 0
def lul():
global hoho
hoho = hoho + 1
print(hoho)
class Application(tk.Frame):
def __init__(self, master=None):
tk.Frame.__init__(self, master)
self.pack()
self.createWidgets()
def createWidgets(self):
self.hi_there = tk.Button(self, fg="green")
self.hi_there["text"] = "Pressing buttons\n is fun, isn't it?"
self.hi_there["command"] = self.lel
self.hi_there.pack(side="top")
def lel(self):
lul()
root = tk.Tk()
app = Application(master=root)
app.mainloop()
关于python - python tkinter应用程序在多行上相同的文本,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/38059394/