當前位置:成語大全網 - 書法字典 - Python tkinter如何在框架中排列多個按鈕

Python tkinter如何在框架中排列多個按鈕

從tkinter導入*

root = Tk()

A = labelframe(根,高度= 200,寬度= 300,text =‘選擇遊戲‘)。

a . pack(side =‘top‘,fill =‘both‘,expand=True)

BTN 1 = Button(a,text =‘開始遊戲‘)

btn1.grid(行=0,列=0)

Btn2 =按鈕(a,text =‘播放壹次‘)

btn2.grid(行=0,列=1)

BTN 3 = Button(a,text =‘結束遊戲‘)

btn3.grid(行=0,列=2)

root.mainloop()