|
@ -9,6 +9,7 @@ import javax.swing.JLabel; |
|
|
import javax.swing.JPanel; |
|
|
import javax.swing.JPanel; |
|
|
import javax.swing.SwingConstants; |
|
|
import javax.swing.SwingConstants; |
|
|
import javax.swing.border.EmptyBorder; |
|
|
import javax.swing.border.EmptyBorder; |
|
|
|
|
|
import javax.swing.border.LineBorder; |
|
|
|
|
|
|
|
|
public class MouseGame extends JFrame { |
|
|
public class MouseGame extends JFrame { |
|
|
|
|
|
|
|
@ -62,6 +63,14 @@ public class MouseGame extends JFrame { |
|
|
lblNewLabel.setBounds(809, 531, 67, 49); |
|
|
lblNewLabel.setBounds(809, 531, 67, 49); |
|
|
contentPane.add(lblNewLabel); |
|
|
contentPane.add(lblNewLabel); |
|
|
|
|
|
|
|
|
|
|
|
JPanel panel = new JPanel(); |
|
|
|
|
|
panel.setBorder(new LineBorder(new Color(0, 0, 0), 2)); |
|
|
|
|
|
panel.setForeground(new Color(0, 0, 0)); |
|
|
|
|
|
panel.setBounds(103, 11, 696, 569); |
|
|
|
|
|
contentPane.add(panel); |
|
|
|
|
|
panel.setLayout(null); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}//end standardkonstruktor |
|
|
}//end standardkonstruktor |
|
|
|
|
|
|
|
|