在Python中设置按钮位置?

在Python中设置按钮位置?,第1张

在Python中设置按钮位置?

Astynax是正确的。要遵循您给出的示例

MyButton1 = Button(master, text="BUTTON1", width=10, command=callback)MyButton1.grid(row=0, column=0)MyButton2 = Button(master, text="BUTTON2", width=10, command=callback)MyButton2.grid(row=1, column=0)MyButton3 = Button(master, text="BUTTON3", width=10, command=callback)MyButton3.grid(row=2, column=0)

应该创建3行按钮。使用网格比使用包好得多。但是,如果在一个按钮上使用网格,而在另一按钮上使用网格,则将不起作用,并且会出现错误。



欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5646074.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-16
下一篇 2022-12-16

发表评论

登录后才能评论

评论列表(0条)

保存