button_back = Button(self.wave_frame, text="退\n出", height=5, font=("楷体", 13), command=self.back2second_frame_1, bd=0, activebackground="#5383c3", highlightthickness=0) button_back.place(x=0, y=200, width=50) button_back.config(fg="#1e50a2", bg="#1e50a2", activebackground="#5383c3") # #007b43 绿色 #1e50a2 button_back.config(bg=self.window["bg"], activebackground=self.window["bg"])我想将按键改成蓝色半透明的应该怎么弄
时间: 2024-02-07 15:03:02 浏览: 67
如何将input type=file显示的浏览变成英文的
5星 · 资源好评率100%
要将按键改成蓝色半透明,可以设置按键的背景颜色为 RGBA 格式的蓝色,其中 A 表示透明度。例如,设置为 (0, 0, 255, 0.5) 表示蓝色半透明。你可以将以下代码中的 `bg` 参数替换为你想要的颜色值:
```python
button_back.config(bg="rgba(0, 0, 255, 0.5)", activebackground="rgba(0, 0, 255, 0.5)")
```
注意,RGBA 格式的颜色值在 tkinter 中可能无法被完全支持,具体效果可能需要你自己尝试调整。
阅读全文