Rebol 无法关闭 Mac OS X 上的视图窗口,并且我无法在字段中输入任何内容
我无法在 Mac OS X 10.6.4 上关闭窗口,并且无法在字段中输入任何内容。 REBOL/View 2.7.7.2.5 2010 年 1 月 5 日
更新:当我转义在此处执行的控制台程序 时,会发生这种情况http://askcode Generation.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
I cannot close window on Mac OS X 10.6.4 and I cannot enter anything in field. REBOL/View 2.7.7.2.5 5-Jan-2010
Update: this occurs when I escape the console program I executed here 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
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
每当您在控制台中退出时,事件管理都会停止。
只需执行 do-events 即可再次启动甚至处理。
关闭控制台窗口应始终关闭所有视图窗口。
anytime you escape in the console, the event management stops.
just do do-events to start up even handling again.
closing the console window should always closes all view windows.