Curl Global Community
オブジェクトをデバイスのディスプレイ全体に簡単に広げる方法はありますか? - Printable Version

+- Curl Global Community (https://communities.curl.com)
+-- Forum: Discussions (https://communities.curl.com/forumdisplay.php?fid=1)
+--- Forum: General Caede questions (https://communities.curl.com/forumdisplay.php?fid=23)
+--- Thread: オブジェクトをデバイスのディスプレイ全体に簡単に広げる方法はありますか? (/showthread.php?tid=873)



オブジェクトをデバイスのディスプレイ全体に簡単に広げる方法はありますか? - freed - 03-19-2013

Graphicクラスに配置したオブジェクト(VBoxなど)を
デバイスのディスプレイ全体に広げたいのですが、
簡単に出来る方法はありますか?

オブジェクトの幅や高さに 各モバイルのディプレイサイズを決めうち
したくありません。



RE: オブジェクトをデバイスのディスプレイ全体に簡単に広げる方法はありますか? - kim - 03-19-2013

幅や高さに{make-elastic preferred-size = 1m}と書くのが簡単です。
画面全体に広がります。

Code:
|| 画面クラス
{define-class public MySampleGraphic
  {inherits Frame}
  {constructor public {default}
    {construct-super
        {HBox
            valign = "center",
            {VBox
                halign = "center",
                width = {make-elastic preferred-size = 1m},
                height = {make-elastic preferred-size = 1m},
                background = "aqua",
                {CommandButton
                    name = "cb1"
                }
            }
        }
    }
    
  }
}