Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的应用程序中有一个 jtextfield,每次您编辑它时, 即把鼠标放在文本的中心并写 - 它会替换字母而不是插入它们。
有没有办法将此行为更改为插入模式?谢谢
在没有看到您的代码的情况下,我只能猜测您拥有的某个地方
textField.setHorizontalAlignment(JTextField.CENTER)
这会将鼠标放在中心,也许你在打电话
textField.replaceSelection()当字段获得焦点或每次更改文本时。
textField.replaceSelection()