假设我用 jbuttons 创建了一个 2d 平铺地图,然后在地图顶部创建了单位,当单元(也是一个 jbutton)位于平铺顶部时,是否有办法显示地图的背景,因为它现在如何单位的背景是否只是红色,那么是否可以使用 jbuttons 而不是 jbuttons 来做到这一点?
问问题
1921 次
2 回答
3
如果 Topmost JButtonTranslucent
可以解决您的目的,这里有一个示例代码,您可以如何做到这一点。只需将在我的情况下使用的AlphaComposite
值更改为0.7f
适合您的代码实例的任何值:
import java.awt.AlphaComposite;
import java.awt.Color;
import java.awt.Graphics;
import java.awt.Graphics2D;
import java.awt.FlowLayout;
import java.awt.image.BufferedImage;
import java.io.IOException;
import java.net.URL;
import javax.swing.*;
public class TransparentButton
{
private CustomButton button;
private ImageIcon backgroundImage;
private void displayGUI()
{
JFrame frame = new JFrame("Transparent Button");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
JPanel contentPane = new JPanel();
contentPane.setOpaque(true);
contentPane.setBackground(Color.BLUE);
try
{
backgroundImage = new ImageIcon(
new URL("http://gagandeepbali.uk.to/" +
"gaganisonline/images/404error.jpg"));
}
catch(IOException ioe)
{
ioe.printStackTrace();
}
JButton baseButton = new JButton(backgroundImage);
baseButton.setOpaque(true);
baseButton.setLayout(new FlowLayout(FlowLayout.LEFT, 5, 5));
button = new CustomButton("Transparent Button");
baseButton.add(button);
contentPane.add(baseButton);
frame.setContentPane(contentPane);
frame.setSize(300, 300);
frame.setLocationByPlatform(true);
frame.setVisible(true);
}
public static void main(String... args)
{
SwingUtilities.invokeLater(new Runnable()
{
public void run()
{
new TransparentButton().displayGUI();
}
});
}
}
class CustomButton extends JButton
{
private BufferedImage buttonImage = null;
public CustomButton(String title)
{
super(title);
setOpaque(false);
}
@Override
public void paint(Graphics g)
{
if (buttonImage == null ||
buttonImage.getWidth() != getWidth() ||
buttonImage.getHeight() != getHeight())
{
buttonImage = (BufferedImage) createImage(
getWidth(), getHeight());
}
Graphics gButton = buttonImage.getGraphics();
gButton.setClip(g.getClip());
super.paint(gButton);
/*
* Make the graphics object sent to
* this paint() method translucent.
*/
Graphics2D g2 = (Graphics2D) g;
AlphaComposite newComposite =
AlphaComposite.getInstance(
AlphaComposite.SRC_OVER, 0.7f);
g2.setComposite(newComposite);
/*
* Copy the JButton's image to the destination
* graphics, translucently.
*/
g2.drawImage(buttonImage, 0, 0, null);
}
}
这是相同的输出:
于 2012-07-15T09:39:28.247 回答
2
可能,是,可取,啊,可能不是。
我相信您需要将标题按钮的布局更改为您可以控制的内容(这将取决于您的视觉要求)。
我个人可能会选择一个带有标签的面板,使用鼠标侦听器来监视鼠标操作和可能用于键盘交互的输入/操作映射。
Jbuttons 只是 jcomponent,因此它们获得了 jcomponents 的所有功能
于 2012-07-15T09:19:35.527 回答