import javax.swing.*;
public class DnDBetweenJTextAreaAndJTextFieldDemo
{
public static void main(String[] args)
{
JFrame f = new JFrame("Drag and Drop");
f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
f.setContentPane(new JPanel());
JTextField tf = new JTextField(25);
tf.setText("http://jaisinghrajpoot.blogspot.in/");
f.add(tf);
JTextArea ta = new JTextArea(4, 25);
ta.setText("Demonstrating\ndrag and drop");
f.getContentPane().add(new JScrollPane(ta));
ta.setDragEnabled(true);
tf.setDragEnabled(true);
f.pack();
f.setVisible(true);
}
}
No comments:
Post a Comment
Thank You !