make JWindow draggable

I was wondering how I could make a JWindow draggable?thanks.
[74 byte] By [codecraiga] at [2007-9-30 2:20:57]
# 1

Implement a MouseMotionListener, and you can do something like this:

public void mouseDragged(MouseEvent e)

{

//setLocation( ....);

//Make use of e.getX(), e.getY() methods to set the new location

}

krrajesh2a at 2007-7-16 13:30:06 > top of Java-index,Archived Forums,Swing...