Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当我按下按钮时,如何取消选中 GTK 中的复选框。假设在打开之前有一个打开和关闭按钮,我将勾选该复选框,但是当我按下关闭按钮时,它必须自动取消选中该复选框。我怎样才能在 gtk 编程中获得它?我尝试使用复选框属性和小部件属性,但它们都不起作用。我尝试使用 gtk setsensitive 但是使用该复选框时,该复选框被禁用但仍然保持勾号
gtk_widget_set_sensitive(normal,FALSE);
我想你想要xxx_set_active()。
xxx_set_active()
get_active() 和 set_active() 让您查看当前状态,并将其更改为“已选中”和“未选中”。