当我实现下面的代码时,仅当用户在调整框架大小后释放鼠标时才会调用该方法。我想要一个在用户调整框架大小时连续调用的方法。我能做些什么呢?
frame.addComponentListener(new ComponentAdapter() {
public void componentResized(ComponentEvent comp) {
System.out.println("Resized");
}
});
当我实现下面的代码时,仅当用户在调整框架大小后释放鼠标时才会调用该方法。我想要一个在用户调整框架大小时连续调用的方法。我能做些什么呢?
frame.addComponentListener(new ComponentAdapter() {
public void componentResized(ComponentEvent comp) {
System.out.println("Resized");
}
});