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_menu_bar 和 gtk_menu_item 之一,而不是下拉子菜单,而是抛出一个回调信号。这可能吗? 我尝试添加一个 gtk_event_box,但菜单栏不接受它,因为它不是菜单项;并将信号连接到该菜单项,但没有成功。
谢谢!
我不太确定为什么activate信号会在双击时触发(也许我没有得到正确的那部分问题),但是GtkMenuItem 可以 GtkWidget通过连接到button-press-event/button-release-event信号来获取鼠标单击事件。
activate
GtkMenuItem
GtkWidget
button-press-event
button-release-event
希望这可以帮助!