码迷,mamicode.com
首页 > 其他好文 > 详细

关于SWT中的Label类和Text类

时间:2014-12-13 17:45:06      阅读:148      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   io   ar   color   os   sp   on   

Label类的继承关系图

bubuko.com,布布扣

Label是SWT中最简单的界面组件,给出他的一个实例如下:

 1 public class Label1 {
 2     public static void main(String[] args) {
 3         Display display = Display.getDefault();
 4         Shell shell = new Shell();
 5         shell.setSize(450, 300);
 6         shell.setText("SWT Application");
 7         
 8         Label lblNewLabel = new Label(shell, SWT.NONE);
 9         lblNewLabel.setBounds(98, 108, 61, 17);
10         lblNewLabel.setText("New Label");
11 
12         shell.open();
13         shell.layout();
14         while (!shell.isDisposed()) {
15             if (!display.readAndDispatch()) {
16                 display.sleep();
17             }
18         }
19     }
20 }

bubuko.com,布布扣

一个Text实例:

创建一个文本框,它有如下功能:

1.只能输入数字

2.至少要输入一个值

3.长度不能多于10个字符

这些要求在实际项目中是很常见的.它的实现代码如下:

 

关于SWT中的Label类和Text类

标签:style   blog   http   io   ar   color   os   sp   on   

原文地址:http://www.cnblogs.com/DreamDrive/p/4161572.html

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