how to move a jframe which has no taskbar?
frame.addmousemotionlistener(this);
public void mousedragged(MouseEvent e)
{
// What to write here
}
I tried setBounds of jframe but it flicker when we try to move the frame.
how to move a jframe which has no taskbar?
frame.addmousemotionlistener(this);
public void mousedragged(MouseEvent e)
{
// What to write here
}
I tried setBounds of jframe but it flicker when we try to move the frame.
try... frame.setLocation (x, y);
@Majestics
I really can't ...(better ask question in all your cases), not sure if with mouse or as suggested @hfx642 ???
both ways are pretty simple,
you must waiting for some of profesional, because your last waiting moved you wrong way :-)
Sorry its title bar.... I am trying different codes , some are working but really slow. I will post the code which suit best for this situation, if i get it before professionals... :)
Top-Level Comtainers without TaskBar is or isn't undecorated ???
if yes then you have put there JPanel and there you can add MouseListener extends MouseAdapter
finally there isn't better and clear as http://tips4java.wordpress.com/2009/06/14/moving-windows/
never ever mixing Component Mover and Resizer or use that in same time, witout deepest knowledge about Listener and SubSystem events
I recently posted a little sample for moving a Swing component with a mouse here
http://www.daniweb.com/software-development/java/threads/375002
it drags a JLabel in a JFrame, but the original version used to drag an undecorated window around the screen. You should be able to use it with almost zero changes.
J
try this
frame.addmousemotionlistener(this);
public void mousedragged(MouseEvent e)
{
frame.setLocation(frame.getX()+e.getX(),frame.getY()+e.getY());
}
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.