我有这段代码
package com.company;
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
public class Alarm extends JFrame {
JFrame frame = new JFrame("Java Alarm Clock");
JMenuBar menuBar = new JMenuBar();
JMenu clock = new JMenu("Clock");
JMenu alarm = new JMenu("Alarm");
JMenu help = new JMenu("Help");
public Alarm() {
super("Java Alarm Clock");
getContentPane().setBackground(new Color(204,204,255));
setLayout(new BorderLayout());
setDefaultCloseOperation(frame.EXIT_ON_CLOSE);
setSize(770,470);
setVisible(true);
add(new pclock() , BorderLayout.WEST);
add(menuBar , BorderLayout.NORTH);
menuBar.setBackground(new Color(204,204,255));
menuBar.add(clock);
menuBar.add(alarm);
menuBar.add(help);
}
class pclock extends JPanel {
public void paintComponent(Graphics g) {
setBackground(new Color(204,204,255));
super.paintComponent(g);
g.setColor(Color.WHITE);
g.fillOval(40, 100, 180, 180);
}
}
public static void main(String[] args) {
new Alarm();
}
}
但是当我运行代码时,圆圈不会出现 它只会在我更改此代码时出现
add(new pclock() , BorderLayout.WEST);
到
add(new pclock());
那么如何让它像那张照片一样出现在左侧? 谢谢
答案 0 :(得分:4)
类名应该以大写字符开头。您的自定义类名称不正确。
BorderLayout的WEST区域将尊重添加到其中的任何组件的宽度。您的自定义组件的大小为(0,0),因此无需显示任何内容。您需要覆盖自定义类的getPreferredSize()
方法以返回时钟大小。
阅读Custom Painting上Swing教程中的部分,了解更多信息和工作示例。