This section illustrates you how to drag and move mouse to draw a figure.
To draw a figure using drag and drop, we have used Rectangle2D class to draw a rectangle. This rectangle has been shown on the frame. When you drag the rectangle and move, a number of figures will be drawn connected to each other. The class MouseEvent provides different methods for mouse actions and all the actions are to be performed by class MouseAdaptor and MouseMotionAdaptor.
To returns the horizontal x position of the event relative to the source component, the method getX() is used and to return the vertical y position of the event relative to the source component, getY() is used. The method getBounds2D() returns the bounding box of this Rectangle2D.
To encapsulate the bitmap representation of the mouse cursor, class Cursor is used. The method Double.toString() returns the string representation of the double argument.
Here is the code of MouseDragAndDrop.java
import java.awt.*;
|
Output will be displayed as:

When you drag the rectangle and move, output will be displayed as:

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.
Ask your questions, our development team will try to give answers to your questions.
Ask Questions? Discuss: Mouse Drag and Drop
Post your Comment