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.
我正在通过 glade 创建一个简单的应用程序,我希望能够设置颜色选择对话框中显示的颜色。我找到了 set_current_color 函数,但是,它需要一个 gdk.Color 对象。
尝试导入 gtk.gdk.Color 失败(实际上,只是导入 gtk 失败)。我可以使用另一种方法来创建颜色对象吗?
原来是混合 GTK2 和 GTK3 的问题。gi.repository.Gtk 有 Color 构造函数。