这里是代码,
from tkinter import *
root = Tk()
update_button = Button(root, text='Update')
update_button.pack()
def button():
frame1 = Frame(root)
frame1.pack()
button1 = Button(frame1, text="Button 1")
button1.pack(side=LEFT)
button2 = Button(frame1, text="Button 2")
button2.pack(side=LEFT)
button()
root.mainloop()
我想button1堆叠在button2当我点击更新按钮。请帮帮我
1条答案
按热度按时间umuewwlo1#
这个问题是可以解决的。
button_1()
函数。button_1()
函数中添加button1.pack
。frame1
和button1
小部件移到函数之外。就这些!
片段:
截图: