2017-04-06 68 views
3

當運行這段代碼,就會以默認大小打開的窗口:紅VID打開的窗口

View [ 
    text "window open with default size" 
] 

如果給出一個大小明確,它會打開一個窗口,其中大小:

View [ 
    size 400x400 
    text "window open with fixed size" 
] 

但是,如何打開最大尺寸/最大化的窗口?

回答

1

這裏的是什麼樣的工作,現在至少微軟的Windows

offset: 0x60 
max-size: system/view/screens/1/size - offset 
view [ 
    size max-size 
    text "window open with max screen size" 
] 

但是,這是因爲它是目前處理的方式,你可以看到,大多數窗口處理功能目前不能實現:

enter image description here

(基於聊天):