每当我单击 button1 时,我都想获得我的 Jframe 的当前大小。这是我最初在 button1clickevent 中编写的代码,当我单击按钮时,我确实得到了宽度和高度,但是当我更改 Jframe 的大小然后再次单击 button1 时,我得到与我相同的宽度和高度得到了更早。价值观不会随时改变。
AppDisplay ap=new AppDisplay(); //class which has got the JFrame
int f12;
f12=ap.getContentPane().getSize().width;
System.out.println(f12+"\n");
f12=ap.getContentPane().getSize().height;
System.out.println(f12);