SWT.Shell
Posted 千彧
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SWT.Shell相关的知识,希望对你有一定的参考价值。
1 import org.eclipse.swt.widgets.Display; 2 import org.eclipse.swt.widgets.Shell; 3 4 public class SWT_Shell { 5 6 public static void main(String[] args) { 7 Display display = Display.getDefault(); 8 Shell shell = new Shell(); 9 shell.setSize(800, 600); 10 shell.setText("SWT.Shell"); 11 shell.setLayout(null); 12 13 shell.open(); 14 shell.layout(); 15 while (!shell.isDisposed()) { 16 if (!display.readAndDispatch()) { 17 display.sleep(); 18 } 19 } 20 21 } 22 23 }
以上是关于SWT.Shell的主要内容,如果未能解决你的问题,请参考以下文章
使用eclipse时发现左下角的source/design选项不见了