0
Open_app = Button(window, bg = '#1E9099', text = "Open Google", fg = 'White'
,command = open_chrome,highlightthickness=0,bd=0, width = 10, height = 2)

Open_app2 = Button(window, bg = '#D53A33', text = "Open VScode", fg = 'White'
,command = open_code,highlightthickness=0,bd=0, width = 9, height = 6)

Open_app.configure(font = ('Valorant',8))
Open_app2.configure(font = ('Valorant',6))

我创建了 2 个按钮,我希望 Open_app2 按钮旋转

4

1 回答 1

0

不,您不能旋转按钮。tkinter 无法旋转小部件。

于 2021-10-06T05:14:07.970 回答