使 pygtk 库存图标“不可用”
我有一个工具栏,其中有典型的按钮:新建、保存、另存为等。有没有办法灰显/禁用/使无用的图标不可用?
例如,如果没有任何更改,请禁用并灰显保存按钮,然后在发生需要保存的更改时重新启用它。
感谢您的帮助!
I have a toolbar that has the typical buttons: new, save, save as, etc. Is there a way to gray out/disable/make unavailable icons that are not useful?
For instance, if nothing has been changed, disable and gray out the save button, then re-enabled it when something has changed that requires a save.
Thanks for the help!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
myButton.set_sensitive(True) # 使按钮可用
myButton.set_sensitive(False) # 使按钮不可用
myButton.set_sensitive(True) # make button available
myButton.set_sensitive(False) # make button unavailable