首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 软件管理 > 软件架构设计 >

Draw2d 学习札记五 布局管理器 ScrollPaneLayout ScrollPane

2012-09-21 
Draw2d 学习笔记五 布局管理器 ScrollPaneLayout ScrollPane关键字:Draw2d ScrollPaneLayout? ScrollPane

Draw2d 学习笔记五 布局管理器 ScrollPaneLayout ScrollPane

关键字:Draw2d ScrollPaneLayout? ScrollPane 布局管理器 滚动条

public class HelloWorld {public static void main(String args[]) {Shell shell = new Shell();shell.setText("Draw2d Hello World");shell.setSize(300, 300);shell.open();// create content 4 shell.createContent4Shell(shell);while (!shell.isDisposed ()) {if (!Display.getDefault().readAndDispatch ())Display.getDefault().sleep ();}}private static void createContent4Shell(Shell shell) {ScrollPane rootFigure = new ScrollPane();Panel panel = new Panel();panel.setLayoutManager(new XYLayout());for(int i=0; i<30; i++) {panel.add(new Label("Label "+i) ,new Rectangle(15*i,15*i,-1,-1));}LightweightSystem lws = new LightweightSystem(shell);rootFigure.setContents(panel);lws.setContents(rootFigure);}

?

?


Draw2d 学习札记五 布局管理器 ScrollPaneLayout ScrollPane
?

热点排行