码迷,mamicode.com
首页 > 系统相关 > 详细

SWT.Shell

时间:2017-07-06 10:12:41      阅读:207      评论:0      收藏:0      [点我收藏+]

标签:pos   bsp   null   tde   idg   default   patch   cli   string   

 

 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

标签:pos   bsp   null   tde   idg   default   patch   cli   string   

原文地址:http://www.cnblogs.com/the-wang/p/7124448.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!