我知道有一种方法可以扩展 JLabel 以绘制 3D 边框和一种绘制圆形边框的方法,但是您如何同时获得这两者?这是我的代码
protected void paintComponent(Graphics g) {
g.setColor(getBackground());
g.fillRoundRect(0, 0, getWidth()-1, getHeight()-1, 25, 25);
g.fill3DRect(10, 10, 30, 30, true);
super.paintComponent(g);