- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个ttk.Button
,我想改变它的颜色。
我通过以下方式做到了:
Style().configure('gray.TButton', foreground='black', background='gray')
backButton = Button(self.bottomFrame, text="Back",
command=lambda: controller.ShowFrame("StartPage"),
style='gray.TButton')
backButton.pack(side='left')
它工作正常(屏幕截图):
但是如果这个小部件处于事件模式(鼠标光标在其中),它看起来很糟糕。背景变成白色,因此文本变得不可见。
问题:如何在事件模式下更改文本颜色?
编辑1:在此之后:
class BackSubmit(MainFrame):
def __init__(self, parent, controller, title):
MainFrame.__init__(self, parent, controller, title)
Style().configure('gray.TButton', foreground='white', background='gray')
backButton = Button(self.bottomFrame, text="Back",
command=lambda: controller.ShowFrame("StartPage"),
style='gray.TButton')
backButton.bind( '<Enter>', self.UpdateFgInAcSt )
backButton.pack(side='left')
Style().configure('blue.TButton', foreground='blue', background='light blue')
submitButton = Button(self.bottomFrame,
text="Submit settings",
command=lambda: self.submitSettings(),
style='blue.TButton')
submitButton.pack(side=RIGHT)
def submitSettings(self):
raise NotImplementedError("Subframe must implement abstract method")
def UpdateFgInAcSt(self, event):
backButton.configure(activeforeground='gray')
我收到错误:
backButton.configure(activeforeground='灰色')
。
NameError:未定义全局名称“backButton”
最佳答案
你需要尝试一下 tkinter events.
如果您创建 2 个相应的函数,如下所示,Enter
和 Leave
事件将完全满足您的目标:
def update_bgcolor_when_mouse_enters_button(event):
backButton.configure(background='black') # or whatever color you want
def update_bgcolor_when_mouse_leaves_button(event):
backButton.configure(background='gray')
然后将这两个函数绑定(bind)到您的按钮:
backButton.bind('<Enter>', update_bgcolor_when_mouse_enters_button)
backButton.bind('<Leave>', update_bgcolor_when_mouse_leaves_button)
您可以使用文本颜色而不是按钮的背景颜色执行相同的操作,但使用 foreground
选项。
一种更便宜的方法是仅使用 Enter
事件并在 activeforground
上播放。替代选项。
这里您只需定义一个函数:
def update_active_foreground_color_when_mouse_enters_button(event):
backButton.configure(activeforeground='gray')
然后将此函数绑定(bind)到 Enter
事件,如下所示:
backButton.bind('<Enter>', update_active_foreground_color_when_mouse_enters_button)
关于python - 当ttk.Button处于事件状态时,如何更改其前景色?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44323528/
我遇到过这个 html: 上面的html和这个有什么区别: 最佳答案 来自MDN page on the tag : 对于 type 的属性标签,可能的值是: 提交:按钮将表单数据提交给服务器
Button button= (Button) findViewbyID(R.id.button); 和 Button button = new Button(this); 有什么区别? 最佳答案 有
我是一名优秀的程序员,十分优秀!