6

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

在此处输入图像描述

4

1 回答 1

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]

我不确定这是否也适用于,尽管看起来窗面no-titleno-borderflags

如果您view从脚本调用,则标题是从脚本的 headerTitle中的属性收集的,尽管您可以通过细化来覆盖它。/title

view/title layout [button "Close" [unview/all]] "My Other Title"
于 2016-08-13T13:46:42.293 回答