我无法在Mac OS X 10.6.4上关闭窗口,我无法在字段中输入任何内容。 REBOL / View 2.7.7.2.5 2010年1月5日
更新:当我转义我在此处执行的控制台程序http://askcodegeneration.com/rebol-form/
时,会发生这种情况 window: layout [
H1 "Demo"
style rightlabel label right 120x24
across
rightlabel "First Name" First-Name: field "Enter First Name" Return rightlabel "Last Name" Last-Name: field "Enter Last Name" Return rightlabel "Age" Age: field "Enter Age" Return rightlabel "Note" Note: Area "Enter Note" Return
rightlabel
space 0
button "Submit" [
;close the window for the program to continue
unview
]
button "Cancel" [unview]
]
View Window
答案 0 :(得分:3)
只要你在控制台中逃脱,事件管理就会停止。
只做do-events即使再次处理也要启动。
关闭控制台窗口应始终关闭所有视图窗口。