gtk_menu_item_new_with_labelex 与 gtk_menu_item_new_with_label
这两个函数调用有什么区别:
menu_item_new_with_labelex vs gtk_menu_item_new_with_label
what is the difference between these two function calls:
menu_item_new_with_labelex vs gtk_menu_item_new_with_label
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
gtk_menu_item_new_with_label() 是一个标准的 gtk 构造函数,它创建一个包含具有指定文本的 GtkAccelLabel 的 GtkMenuItem。
gtk_menu_item_new_with_labelex() 不是标准函数; 它不存在于任何 gtk 头文件中; 事实上,谷歌从未听说过它。 如果您在代码中看到它,它可能是由您团队中的其他人创建的某种包装器。
gtk_menu_item_new_with_label() is a standard gtk constructor that creates a GtkMenuItem containing a GtkAccelLabel with the specified text.
gtk_menu_item_new_with_labelex() is not a standard function; it does not exist in any of the gtk header files; in fact, google has never heard of it. If you see it in your code, it's probably some sort of a wrapper created by another person in your team.