lbxx916 发表于 2021-3-21 12:02:32

tkinter Lable排版问题求解

先附上我的代码
import tkinter as tk


class Application(tk.Frame):
    def __init__(self, master=None):
      super().__init__(master)
      self.master = master
      self.pack()
      self.create_widgets()

    def create_widgets(self):
      self.hi_there = tk.Button(self)
      self.hi_there["text"] = "Hello World\n(click me)"
      self.hi_there["command"] = self.say_hi
      self.hi_there.pack(side="top")
      self.quit = tk.Button(self, text="QUIT", fg="red", command=self.master.destroy)
      self.quit.pack(side="bottom")

    def say_hi(self):
      global tips
      tk.Label(self,text=f'你点击了{tips}次了').pack()
      tips += 1


root = tk.Tk()
app = Application(master=root)
tips = 1
app.mainloop()
执行结果为(插入不了图片,尴尬):每次点击以后就会自动在下方自动新增一个,如你点击了1次了
你点击了2次了
你点击了3次了
你点击了4次了
你点击了5次了
...

我想达到的效果是我每点击一次就不在下方继续新增,若我点击5次,应该是
...
你点击了5次了
你点击了4次了
你点击了3次了
你点击了2次了
你点击了1次了

有没有大佬指点一下,感谢万分!

逃兵 发表于 2021-3-21 12:36:43

import tkinter as tk


class Application(tk.Frame):
    def __init__(self, master=None):
      super().__init__(master)
      self.master = master
      self.pack()
      self.create_widgets()
      self.v=tk.StringVar()
      tk.Label(self,textvariable=self.v).pack()
      self.tips=1

    def create_widgets(self):
      self.hi_there = tk.Button(self)
      self.hi_there["text"] = "Hello World\n(click me)"
      self.hi_there["command"] = self.say_hi
      self.hi_there.pack(side="top")
      self.quit = tk.Button(self, text="QUIT", fg="red", command=self.master.destroy)
      self.quit.pack(side="bottom")

    def say_hi(self):
      string = '你点击了%s次了'%self.tips
      self.v.set(string)
      self.tips+=1




root = tk.Tk()
app = Application(master=root)
app.mainloop()

lbxx916 发表于 2021-3-31 11:56:55

逃兵 发表于 2021-3-21 12:36


还是不行呀

逃兵 发表于 2021-3-31 12:32:44

lbxx916 发表于 2021-3-31 11:56
还是不行呀

你想实现什么,不是在中间格子里增加数字吗
页: [1]
查看完整版本: tkinter Lable排版问题求解