你能做一个JFrame
随机选择提供的三到四张图片作为背景的吗?因此,当用户打开 时JFrame
,JFrame
将选择任何指定的图片作为背景。
我想要这样的东西:
ImageIcon background = new ImageIcon("First Image.png");
JLabel label = new JLabel(background);
frame.add(label);
第二张图:
ImageIcon background2 = new ImageIcon("Second Image.png");
JLabel label2 = new JLabel(background2);
frame.add(label2);
第三:
ImageIcon background3 = new ImageIcon("Third Image.png");
JLabel label3 = new JLabel(background3);
frame.add(label3);
也许是第四个:
ImageIcon background4 = new ImageIcon("Fourth Image.png");
JLabel label4 = new JLabel(background4);
frame.add(label4);
我想要一些代码,这样 JFrame 就可以使用这些代码中的任何一个。
另外,有没有办法随机更改 JFrame 标题?
就像我想要它一样:
'My Game: It's the best!'
...然后当用户再次打开 JFrame 时,标题将更改为,也许:
'My Game: Try it, it's new!'
和/或
'My Game: You can play it easily!'
和/或
'My Game: Find all the mysteries...'
和/或
'My Game: Money don't go on trees!'
和其他有趣的台词。
希望我让你容易理解!