R RGtk2 gmenu:使用gaction后的子菜单
在下一个示例中,我们有一个带有 aData 的主菜单。 我们怎样才能有一个包含 aData1 和 aData2 的子菜单?
library(gWidgets)
options(guiToolkit = "RGtk2")
aData <- gaction(label="File", icon="file")
aData1 <- gaction(label="Open", icon="open")
aData2 <- gaction(label="Close", icon="close")
ml <- list(Data=aData)
gmenu(ml, container = TRUE)
In the next example we have a mainmenu with aData.
How can we have a submenu with aData1 and aData2 ?
library(gWidgets)
options(guiToolkit = "RGtk2")
aData <- gaction(label="File", icon="file")
aData1 <- gaction(label="Open", icon="open")
aData2 <- gaction(label="Close", icon="close")
ml <- list(Data=aData)
gmenu(ml, container = TRUE)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这与你之前的问题有关。答案基本上是否定的,但如果您愿意使用 gWidgets2 的开发版本:
那么您可以破解它,因为该版本允许您将小部件放入工具栏中。这是可行的:
我仍然需要在这个版本中添加一些小部件(还没有树小部件、数据框编辑器等)。
This is related to your previous question. The answer is basically no, but if you are willing to use the developmental version of gWidgets2:
then you can hack this in, as that version allows you to put in widgets into the toolbar. Here is something that kind of works:
I still need to add some of the widgets into this version (no tree widget, data frame editor, and others yet).
我想你正在寻找这个:
I think you're looking for this: