我正在使用 RGBA 进行着色。我希望按钮透明,但能够设置透明度,因此是 alpha。现在它看起来很好,直到我做任何调用重绘/绘画的事情,比如悬停或聚焦。如果我将 opaque 设置为 false,它会使其透明,我只是不希望这 100% 透明。这也不是我在背景中绘制的图像。RGB没有问题,只有RGBA。
这些不起作用:
jButton1.setContentAreaFilled(true or false);
jButton1.setOpaque(true or false);
这是我的 jButton 颜色代码:
jButton1.setBackground(new Color(255,0,0,100));
这是它的样子。