View Single Post
  #2 (permalink)  
Old 01-08-2008, 09:38 PM
roots's Avatar
roots roots is offline
Moderator
 
Join Date: Jan 2008
Location: Dallas
Posts: 263
roots is on a distinguished road
Code:
public class Main { public static void main(String[] args) { JFrame j = new JFrame(); j.setVisible(true); j.getContentPane().addHierarchyBoundsListener(new HierarchyBoundsListener(){ @Override public void ancestorMoved(HierarchyEvent e) { System.out.println(e); } @Override public void ancestorResized(HierarchyEvent e) { System.out.println(e); } }); } }
Please run the code, you can continue thereafter ..
__________________
dont worry newbie, we got you covered.
Reply With Quote