有什么办法可以在 python tkinter 中旋转按钮吗?

Is there somehow i can rotate button in python tkinter?

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 按钮旋转

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