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.
我目前正在使用 gWidgets (RGtk2) 开发一个基于 GUI 的小型应用程序。我遇到了一个问题,我无法使用 gWidgets 包中提供的文档自行解决:
当用户点击红十字关闭GUI/widgets/主窗口时,是否可以触发一个事件,即一个函数?出于可用性原因,我不想有一个额外的按钮,尽管它肯定会起作用。
PS:我认为这里不需要一个例子,但如果你们中的任何人坚持我会添加一个。
尝试
addhandlerdestroy( myWidget, handler = f_exit )
在哪里
f_exit <- function( h,... { # your code, maybe simply dispose( myWidget ) }