t***e 发帖数: 3601 | 1 Some time you see in application that when you input cdkey, IP address etc.
it allows focus to automatically jump to next text field when you filled the
previous text field up, so the user can input information without
interruption. I wonder how you implement this in java. | j***n 发帖数: 301 | 2 one possible way is to monitor property changing event
.
the
【在 t***e 的大作中提到】 : Some time you see in application that when you input cdkey, IP address etc. : it allows focus to automatically jump to next text field when you filled the : previous text field up, so the user can input information without : interruption. I wonder how you implement this in java.
| m******t 发帖数: 2416 | 3
.
the
The implementation can vary depending on what GUI technology you use. But
basically it boils down to subscribing to the field changed event, and move
the focus to the next one if the current one is filled up.
【在 t***e 的大作中提到】 : Some time you see in application that when you input cdkey, IP address etc. : it allows focus to automatically jump to next text field when you filled the : previous text field up, so the user can input information without : interruption. I wonder how you implement this in java.
|
|