对于这种特定情况,您需要创建自己的边界。
这是渐变边框类的示例:
public static class GradientBorder implements Border
{
private Insets margin;
public GradientBorder ( int top, int left, int bottom, int right )
{
super ();
margin = new Insets ( top, left, bottom, right );
}
public void paintBorder ( Component c, Graphics g, int x, int y, int width, int height )
{
Graphics2D g2d = ( Graphics2D ) g;
g2d.setPaint ( new GradientPaint ( x, y, Color.RED, x + width, y, Color.BLUE ) );
Area border = new Area ( new Rectangle ( x, y, width, height ) );
border.subtract ( new Area ( new Rectangle ( x + margin.left, y + margin.top,
width - margin.left - margin.right, height - margin.top - margin.bottom ) ) );
g2d.fill ( border );
}
public Insets getBorderInsets ( Component c )
{
return margin;
}
public boolean isBorderOpaque ()
{
return true;
}
}
当然,您可以指定任何其他渐变方向、颜色等。您也可以将它们的初始化放入构造函数中(如果需要)。要使用它,您只需要设置边框(在任何 JComponent 继任者中):
jComponent.setBorder ( new GradientBorder ( 25, 50, 25, 50 ) );
基本上你可以用任何颜色/动画/形状等创建你喜欢的任何边框
顺便说一下 - isBorderOpaque() 方法应该返回 true,如果你想创建半透明边框(例如半透明颜色,圆角形状等),否则你将不得不处理组件重绘问题。