我正在尝试使用GUI显示.png图片。但是我在显示图片时遇到了麻烦。
我想我已经隔离了说明中的地方,但似乎找不到可行的解决方案。
我的指示告诉我...
将标题设置为Lab Button
创建两个类型为Icon的局部变量:image1和image2。
使用基于Image1和Image2的新ImageIcon初始化它们-如下所示:
图标image1 = new ImageIcon(getClass()。getResource(“ Image1.png”));
使用基于Image3的新ImageIcon初始化字段clickImage
使用新的JButton初始化字段imgButton,该JButton接受image1作为唯一参数
在imgButton上调用方法setRolloverIcon并将image2作为翻转图标传递
将imgButton添加到此(ImageButton,它是一个JFrame)
似乎我需要创建一个方法来初始化imgButton。但是,如果这样做,我是否不需要为每个Icon图像创建一个新变量?例如
imgButton = new JButton(image1);
final JButton imgButton2 = new JButton(image2);
final JButton imgButton3 = new JButton(image3);
我能得到的任何帮助将不胜感激。谢谢。
package ImageButton.Downloads;
import javax.swing.Icon;
import javax.swing.ImageIcon;
import javax.swing.JButton;
import javax.swing.JFrame;
public class ImageButton extends JFrame
{
private final JButton imgButton;
private final Icon clickImage;
public ImageButton()
{
JFrame frame = new JFrame();
frame.setTitle("Lab Button");
Icon image1 = new ImageIcon(getClass().getResource("Image1.png"));
Icon image2 = new ImageIcon(getClass().getResource("Image2.png"));
clickImage = new ImageIcon(getClass().getResource("Image3.gif"));
imgButton = new JButton(image1);
imgButton.setRolloverIcon(image2);
}
}
package ImageButton.Downloads;
import javax.swing.JFrame;
public class ImageButtonApp
{
public ImageButtonApp()
{
// TODO Auto-generated constructor stub
}
public static void main(String[] args)
{
ImageButton imageButton = new ImageButton();
imageButton.setSize(660, 660);
imageButton.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
imageButton.setVisible(true);
}
}
最佳答案
您正在创建两个JFrame,显示其中一个,但不向其中添加JButton。换句话说,您的代码将忽略此rec:
将imgButton添加到此(ImageButton,它是一个JFrame)
解决方案:仅使用一个JFrame,按照说明使用您的类,将JButton添加到它或添加到JFrame的JPanel中,然后显示它。
具体来说,更改此:
JFrame frame = new JFrame(); // extra JFrame that's never used!
frame.setTitle("Lab Button");
对此:
super("Lab Button");
并在构造函数的末尾添加
add(imgButton);
。