6
如何刪除rebol上的默認標題欄?如何刪除rebol上的默認標題欄?
如何刪除rebol上的默認標題欄?如何刪除rebol上的默認標題欄?
在rebol2,使用[no-title]
(清除標題欄)或[no-border]
(刪除標題欄)選項:
view/options layout [button "Close" [unview/all]] [no-title no-border]
到目前爲止,我所知道的,同樣適用於rebol3 。
view/options [button "Close" [unview/all]] [no-title no-border]
我不能肯定,如果這適用於red還,雖然它出現在窗面has no-title
and no-border
flags。
如果從腳本調用view
,然後將標題從Title
屬性在script's header雲集,雖然你可以用/title
細化覆蓋。
view/title layout [button "Close" [unview/all]] "My Other Title"
謝謝!!!!!! –
我從來沒有使用Rebol,但我認爲這可能有所幫助:http://www.rebol.com/docs/words/wview.html。看看「opts - 窗口選項[no-title no-border resize](必須是:block word)」。 – mwk