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.
我有几个 SWT 小部件。如果存在的任何字段中有任何修改,我正在尝试创建一个操作。
示例:如果我从 更改名称,Text我应该能够识别它。我尝试在网上搜索解决方案,但找不到合适的解决方案。
Text
有什么建议么?
使用addModifyListener
ModifyListener listener = new ModifyListener() { /** {@inheritDoc} */ public void modifyText(ModifyEvent e) { // Handle event } }); text1.addModifyListener(listener); text2.addModifyListener(listener);