Practical 11
Practical 11
Practical 11
public practical11A()
{ setTitle("Mouse Demo");
setSize(300, 200);
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
setLayout(null);
label = new JLabel("Hello Mouse");
label.setBounds(50, 150, 200,
100); add(label);
addMouseListener(this);`
}