首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 其他教程 > 互联网 >

滚动条 展示 ScrollPaneExample

2013-06-25 
滚动条 显示 ScrollPaneExample滚动条 显示 ScrollPaneExampleimport org.eclipse.draw2d.Figureimport o

滚动条 显示 ScrollPaneExample

滚动条 显示 ScrollPaneExample

import org.eclipse.draw2d.Figure;import org.eclipse.draw2d.GroupBoxBorder;import org.eclipse.draw2d.LightweightSystem;import org.eclipse.draw2d.LineBorder;import org.eclipse.draw2d.ScrollPane;import org.eclipse.swt.widgets.Display;import org.eclipse.swt.widgets.Shell;public class ScrollPaneExample {public static void main(String args[]) {Shell shell = new Shell();shell.setSize(300,200);shell.open();shell.setText("ScrollPaneExample");Figure fixedSize = new Figure();//fixedSize.setBorder(new LineBorder());fixedSize.setPreferredSize(400,400);ScrollPane scrollpane = new ScrollPane();//scrollpane.setBorder(new GroupBoxBorder("scrollpane"));scrollpane.setContents(fixedSize);LightweightSystem lws = new LightweightSystem(shell);lws.setContents(scrollpane);scrollpane.setSize(shell.getSize().x,shell.getSize().y);Display display = Display.getDefault();while (!shell.isDisposed()) {if (!display.readAndDispatch())display.sleep();}}}

?

热点排行