我的应用程序中有一个 textField,当用户单击 JList 中的一个项目时,它将以编程方式启动 (textField.setText() )。稍后用户将手动更改此值。我坚持使用文档侦听器来检测此文本字段中的更改。当以编程方式发生更改时,它必须什么都不做,但如果手动发生,它应该将背景更改为红色。
如何检测 textField 是手动填写还是 textField.setText() 填写?
txtMode.getDocument().addDocumentListener(new DocumentListener() {
public void insertUpdate(DocumentEvent e) {
if (!mode.equals(e.getDocument()))
txtMode.setBackground(Color.red);
}
public void removeUpdate(DocumentEvent e) {
if (mode.equals(e.getDocument()))
txtMode.setBackground(Color.white);
}
public void changedUpdate(DocumentEvent e) {
//To change body of implemented methods
}
});