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.
文本字段被禁用并带有文本。
当我触摸一个按钮时,将启用文本字段进行编辑。
但是,我想在启用时清除文本字段。
一个限制是我不能向按钮添加任何其他侦听器。
有没有人可以回答我的问题?
非常感谢!
试试这个..
在启用文本字段的按钮侦听器中,在启用语句之后,只需添加mytext.setText("");
mytext.setText("");
您可以附加一个属性侦听器并侦听“启用”事件
field.addPropertyChangeListener("enabled", listener);
这根本不需要你搞乱这个领域......
检查here,这是您问题的答案。你只需要一些修改...
带有输入提示的 Java JTextField