java swing 边框阴影,如何在Swing中创建带有边框阴影的JButton

How can I create a JButton like this with inner shadow in Swing?

eiaEC.png

I wan to create JButton with different Color of border, like top and left border color should be black and right and bottom border color should be of white color.

But all together, I want inner shadow of dark gray color in top and left side like above image.

解决方案

First I thought you can just achieve this with a simple BevelBorder, but unfortunately you can't set the border's thickness comfortably... So I had to basically make a customized Border. You can customize it more if you don't like the style of my button in the paintBorder method, but you have to know how to work with Graphics. Here is what I've got:

import java.awt.Color;

import java.awt.Component;

import java.awt.Dimension;

import java.awt.FlowLayout;

import java.awt.Graphics;

import java.awt.Insets;

import javax.swing.JButton;

import javax.swing.JFrame;

import javax.swing.border.Border;

/**

*

*/

public class MyBorder implements Border {

private int thickness_ = 4;

private Color white = Color.WHITE;

private Color gray = Color.GRAY;

private Color black = Color.BLACK;

public static void main(String[] args) {

JFrame frm = new JFrame("Border Test");

frm.setLayout(new FlowLayout());

JButton btn = new JButton("Button");

MyBorder border = new MyBorder();

btn.setBorder(border);

btn.setFocusPainted(false);

btn.setPreferredSize(new Dimension(60,30));

btn.setBackground(Color.LIGHT_GRAY);

frm.add(btn);

frm.setSize(200,200);

frm.setVisible(true);

}

public void paintBorder(Component c, Graphics g, int x, int y, int width,

int height) {

Color oldColor = g.getColor();

int i;

for (i = 0; i < thickness_; i++) {

g.setColor(white);

g.drawRect(x + i, y + i, width - i - i - 1, height - i - i - 1); //White Rectangle

}

for (i = 0; i < thickness_/2; i++) {

g.setColor(black);

g.drawLine(x + i, y + i, (width - x) - (i * 2), y + i); //Top Outer Edge

g.drawLine(x + i, y + i, x + i, (height - y) - (i * 2)); //Left Outer Edge

}

for (i = thickness_/2; i < thickness_; i++) {

g.setColor(gray);

g.drawLine(x + i, y + i, (width - x) - (i * 2), y + i); //Top Inner Edge

g.drawLine(x + i, y + i, x + i, (height - y) - (i * 2)); //Left Inner Edge

}

g.setColor(oldColor);

}

public int getThickness() {

return thickness_;

}

public void setThickness(int i) {

thickness_ = i;

}

public boolean isBorderOpaque() {

return true;

}

public Insets getBorderInsets(Component c) {

return new Insets(thickness_, thickness_, thickness_, thickness_);

}

}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值