我正在尝试为消息警报弹出窗口设置一个图标,并且我正在使用我在网上找到的方法。但是,它们会导致图像出现以下问题:
- 甚至没有被设置为图标
- 太大了
- 放置在 JPanel 中
下面的屏幕截图显示了我的意思:
而且我的代码似乎没有任何问题:
final ImageIcon iconF = new ImageIcon(LOGIN.class.getResource("/resources/offline.png"));
JOptionPane.showMessageDialog(null, "ERROR: Please check your username and password then try again.", "Login Failed", JOptionPane.ERROR_MESSAGE, iconF);
当这似乎是我自己问题的“答案”时,我不明白是什么导致了这个问题的混乱。