2016-08-13 50 views
6

如何删除rebol上的默认标题栏?如何删除rebol上的默认标题栏?

enter image description here

+1

我从来没有使用Rebol,但我认为这可能有所帮助:http://www.rebol.com/docs/words/wview.html。看看“opts - 窗口选项[no-title no-border resize](必须是:block word)”。 – mwk

回答

3

,使用[no-title](清除标题栏)或[no-border](删除标题栏)选项:

view/options layout [button "Close" [unview/all]] [no-title no-border] 

到目前为止,我所知道的,同样适用于

view/options [button "Close" [unview/all]] [no-title no-border] 

我不能肯定,如果这适用于还,虽然它出现在窗面has no-title and no-border flags

如果从脚本调用view,然后将标题从Title属性在script's header云集,虽然你可以用/title细化覆盖。

view/title layout [button "Close" [unview/all]] "My Other Title" 
+0

谢谢!!!!!! –