def mark_used(self, button): if not button.used: # 将按钮的标记设置为“已使用” button.used = True # 更改按钮的背景颜色 button.configure(bg="red") # 取消按钮的绑定事件 button.unbind("<Button-1>") # 绑定鼠标离开事件,使按钮的背景颜色保持不变 button.bind("<Leave>", lambda event, button=button: button.configure(bg="red")) # 设置当前按钮为被点击的按钮 self.current_button = button 根據兩個函數,修改在這個函數 def save_to_excel(self):運行最後調用某個再次改變對應按鈕的顔色為綠色,
时间: 2024-04-13 12:30:04 浏览: 62
要在`save_to_excel`函数运行最后调用某个方法来再次改变对应按钮的颜色为绿色,你可以在`mark_used`函数中添加一些逻辑。以下是修改后的代码:
```python
def mark_used(self, button):
if not button.used:
# 将按钮的标记设置为“已使用”
button.used = True
# 更改按钮的背景颜色为红色
button.configure(bg="red")
# 取消按钮的绑定事件
button.unbind("<Button-1>")
# 绑定鼠标离开事件,使按钮的背景颜色保持不变为红色
button.bind("<Leave>", lambda event, button=button: button.configure(bg="red"))
# 设置当前按钮为被点击的按钮
self.current_button = button
def save_to_excel(self):
# 在保存到Excel之后,调用change_button_color方法,将对应按钮的颜色改为绿色
self.change_button_color(self.current_button)
def change_button_color(self, button):
# 更改按钮的背景颜色为绿色
button.configure(bg="green")
```
在这个修改中,我们在`mark_used`函数中添加了一个`save_to_excel`函数的调用,即在按钮被标记为已使用后,调用`save_to_excel`函数来保存到Excel。在`save_to_excel`函数中,我们调用了`change_button_color`方法,将对应按钮的颜色改为绿色。
请注意,`self.current_button`是在`mark_used`函数中设置的当前按钮变量,你需要确保在适当的位置为其赋值。
希望这个修改满足了你的需求。如果还有其他问题,请随时提问。
阅读全文