如何创建可以查询但未更新的JTextfield
?
答案 0 :(得分:7)
setEditable(false);
在JTextField
上使用上述方法会使用户无法编辑文本,但仍然可以复制该文本,或者您可以使用getText()
提取值。
答案 1 :(得分:2)
快速搜索出现了这个例子:
import org.eclipse.swt.SWT;
import org.eclipse.swt.layout.GridLayout;
import org.eclipse.swt.widgets.Display;
import org.eclipse.swt.widgets.Shell;
import org.eclipse.swt.widgets.Text;
public class ReadOnlyTextExample {
public static void main(String[] args) {
Display display = new Display();
Shell shell = new Shell(display);
shell.setLayout(new GridLayout(1, false));
// Create a read-only text field
new Text(shell, SWT.READ_ONLY | SWT.BORDER).setText("Read Only");
shell.open();
while (!shell.isDisposed()) {
if (!display.readAndDispatch()) {
display.sleep();
}
}
display.dispose();
}
}
答案 2 :(得分:0)
取决于UI框架。尝试设置
xx.setEnabled(false);
或
xx.setEditable(false);