SWT 设置Text大小
时间: 2024-02-03 13:15:45 浏览: 94
swt.zip_SWT
你可以使用 `setFont()` 方法来设置 SWT Text 控件的字体大小。具体步骤如下:
1. 创建一个 Font 对象,通过 `setHeight()` 方法设置字体大小。
```java
Font font = new Font(Display.getDefault(), "Arial", 12, SWT.NORMAL);
```
2. 将 Font 对象设置到 Text 控件上,通过 `setFont()` 方法实现。
```java
Text text = new Text(parent, SWT.BORDER);
text.setFont(font);
```
完整代码示例:
```java
import org.eclipse.swt.SWT;
import org.eclipse.swt.graphics.Font;
import org.eclipse.swt.layout.FillLayout;
import org.eclipse.swt.widgets.Display;
import org.eclipse.swt.widgets.Shell;
import org.eclipse.swt.widgets.Text;
public class TextDemo {
public static void main(String[] args) {
Display display = new Display();
Shell shell = new Shell(display);
shell.setLayout(new FillLayout());
Font font = new Font(display, "Arial", 12, SWT.NORMAL);
Text text = new Text(shell, SWT.BORDER);
text.setFont(font);
shell.pack();
shell.open();
while (!shell.isDisposed()) {
if (!display.readAndDispatch()) {
display.sleep();
}
}
font.dispose();
display.dispose();
}
}
```
阅读全文