如何设置JSlider的背景图像?

时间:2012-06-14 12:58:10

标签: java applet jslider

我有一个applet。我设置了它的图像背景。它工作正常   现在我想将背景图像设置为JSlider   我怎么能这样做?

1 个答案:

答案 0 :(得分:0)

您需要创建自定义JSlider类并覆盖paintComponent方法。请务必在滑块对象上调用setOpaque(false)。

public class CustomSlider extends JSlider
{
    private Image img = null;

    public CustomSlider()
    {
        try
        {
            img = ImageIO.read(new File("background.jpg"));
        }
        catch (IOException e)
        {
            e.printStackTrace();
        }
    }

    @Override
    public void paintComponent(Graphics g)
    {
        // Draw the previously loaded image to Component
        g.drawImage(img, 0, 0, null);
        super.paintComponent(g);
    }
}