爪哇岛骑士
爪哇岛骑士
tEST2
import
org.eclipse.swt.SWT;
import
org.eclipse.swt.widgets.Display;
import
org.eclipse.swt.widgets.Label;
import
org.eclipse.swt.widgets.Shell;
public
class
FirstSWT
{
public
static
void
main(String[] args)
{
Display display
=
new
Display();
Shell shell
=
new
Shell(display);
Label label
=
new
Label(shell, SWT.CENTER);
label.setText(
"
Hello, World
"
);
label.setBounds(shell.getClientArea());
shell.open();
shell.setText(
"
Hello World!
"
);
while
(
!
shell.isDisposed())
{
if
(
!
display.readAndDispatch())
{
display.sleep();
}
}
display.dispose();
}
}
posted on 2009-08-11 00:16
爪哇岛骑士
阅读(110)
评论(0)
编辑
收藏
新用户注册
刷新评论列表
只有注册用户
登录
后才能发表评论。
网站导航:
博客园
IT新闻
Chat2DB
C++博客
博问
管理
Powered by:
BlogJava
Copyright © 爪哇岛骑士
<
2009年8月
>
日
一
二
三
四
五
六
26
27
28
29
30
31
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
1
2
3
4
5
导航
BlogJava
首页
新随笔
联系
聚合
管理
统计
随笔 - 2
文章 - 0
评论 - 0
引用 - 0
常用链接
我的随笔
我的评论
我的参与
留言簿
给我留言
查看公开留言
查看私人留言
随笔档案
2009年8月 (1)
2009年7月 (1)
搜索
最新评论
阅读排行榜
1. tEST2(110)
2. Test(100)
评论排行榜
1. tEST2(0)
2. Test(0)