为了账号安全,请及时绑定邮箱和手机立即绑定

无法在tkinter中将我的按钮放置到指定的一侧

无法在tkinter中将我的按钮放置到指定的一侧

紫衣仙女 2021-05-06 18:49:33
我在python 3.6中使用了tkinter,所以我可以学习GUI编程。我试图创建一个按钮。当我尝试pack按,,或按钮时left,没有得到输出,而frame命令的工作正常。请帮助我。提前致谢。righttopbottomside=top         from tkinter import *         import tkinter as tk         root = tk.Tk()         topframe = Frame(root)         topframe.pack()         bottomframe = Frame(root)         bottomframe.pack(side=BOTTOM)         button1 = Button(topframe, text="helo boys", fg="green")         button1.pack()         button2 = Button(topframe, text="how are you", fg="red")         button2.pack(side=LEFT)         button3 = Button(bottomframe, text="we are fine", fg="blue")         button3.pack(side=RIGHT)         root.mainloop()      
查看完整描述

2 回答

  • 2 回答
  • 0 关注
  • 204 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信