AsWingのJScrollPaneの中身を左上にそろえる。
1684 ワード
ハイクオリティGUIライブラリAsWing( http://www.aswing.org )のTips4つ目。
JScrollPaneでJPanelなどにスクロールバーを表示させる時、
中身がJScrollPaneより小さいと自動的に中央揃えになる。
これを左上にしたいときは以下のように書く。
ScrollPaneTest.as
var scroll:JScrollPane = new JScrollPane( new JPanel() );
var viewPort:JViewport = scroll.getViewport() as JViewport;
viewPort.setVerticalAlignment( JViewport.TOP );
viewPort.setHorizontalAlignment( JViewport.LEFT );
Author And Source
この問題について(AsWingのJScrollPaneの中身を左上にそろえる。), 我々は、より多くの情報をここで見つけました https://qiita.com/shohei909/items/c6261d01221ce3209b3c著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .