文字和文本样式 : 文字 « SWT « Java 教程

En
Java 教程
1. 语言基础
2. 数据类型
3. 操作符
4. 流程控制
5. 类定义
6. 开发相关
7. 反射
8. 正则表达式
9. 集合
10. 线
11. 文件
12. 泛型
13. 本土化
14. Swing
15. Swing事件
16. 二维图形
17. SWT
18. SWT 二维图形
19. 网络
20. 数据库
21. Hibernate
22. JPA
23. JSP
24. JSTL
25. Servlet
26. Web服务SOA
27. EJB3
28. Spring
29. PDF
30. 电子邮件
31. 基于J2ME
32. J2EE应用
33. XML
34. 设计模式
35. 日志
36. 安全
37. Apache工具
38. 蚂蚁编译
39. JUnit单元测试
Java
Java 教程 » SWT » 文字 
17. 15. 1. 文字和文本样式

SWT offers the Text class for text-entry fields.

StyleDescription
SWT.MULTICreates a multiple-line text field.
SWT.SINGLECreates a single-line text field. This is the default. You may specifiy only one of SWT.MULTI or SWT.SINGLE.
SWT.READ_ONLYCreates a text field with uneditable contents.
SWT.WRAPWith multiple-line text fields, causes text to wrap.
SWT.BORDERDraws a border around the text field. Note that this style isn't set by default, and your text fields will look funny without it.
SWT.CENTERCenters the text in this text field.
SWT.LEFTLeft-aligns the text in this text field. This is the default.
SWT.RIGHTRight-aligns the text in this text field. You may specify only one of SWT.CENTER, SWT.LEFT, or SWT.RIGHT.
SWT.PASSWORDCreates a text field suitable for password entry-it doesn't display the actual characters the user types, but rather it displays asterisks.
SWT.H_SCROLLCreates a horizontal scrollbar to scroll this text field.
SWT.V_SCROLLCreates a vertical scrollbar to scroll this text field.


SWT.SINGLE | SWT.LEFT is set by default

17. 15. 文字
17. 15. 1. 文字和文本样式
17. 15. 2. 一个单线文本字段一个单线文本字段
17. 15. 3. 创建一个右对齐单行文本字段创建一个右对齐单行文本字段
17. 15. 4. 创建密码文本字段创建密码文本字段
17. 15. 5. 创建只读文本字段创建只读文本字段
17. 15. 6. 创建一个多行文本字段创建一个多行文本字段
17. 15. 7. 更改文本字体更改文本字体
17. 15. 8. 选择(启动,停止)选择(启动,停止)
17. 15. 9. 获得加字符位置获得加字符位置
17. 15. 10. 附加行文字附加行文字
17. 15. 11. 设置文字的大小设置文字的大小
17. 15. 12. 选择所有文字文本选择所有文字文本
17. 15. 13. 调整文字控制调整文字控制
17. 15. 14. 文字控件:文本输入,输出到另一个文字控件:文本输入,输出到另一个
17. 15. 15. Prevent Tab from traversing out of a controlPrevent Tab from traversing out of a control
17. 15. 16. 文字的背景文字的背景
www.java2java.com | Contact Us
Copyright 2010 - 2030 Java Source and Support. All rights reserved.
All other trademarks are property of their respective owners.