Python AppIndicator 中的 ImageMenuItem 圖標

Python AppIndicator 中的 ImageMenuItem 圖標

我嘗試使用 gtk.ImageMenuItems 建立 AppIndicator。通常 ImageMenuItems 會顯示股票的項目,但使用 Python AppIndicator 選單中完全不顯示任何圖示。這是一個缺乏的功能嗎?

這是我的範例程式碼。當然,指示器顯示一個圖標,但不顯示選單項目:

exit_item = gtk.ImageMenuItem(stock_id=gtk.STOCK_QUIT)
exit_item.connect("activate", quit, None)
exit_item.show()

答案1

預設情況下,選單項目上的圖示不會顯示(您可以在 GConf/DConf 中的某處變更)。使用

exit_item.set_always_show_image(True)

來覆蓋這個。

相關內容