gpt4 book ai didi

java - 更改 JOptionPane 中的图标

转载 作者:行者123 更新时间:2023-11-29 03:33:22 26 4
gpt4 key购买 nike

我有一个扩展 JOptionPane 的类。其中有一个方法调用 showConfirmDialog (new JFrame(), (JScrollPane) jp, "Friends List", 2, 0, icon);

有没有一种无需再次调用 showConfirmDialog 即可更改图标的方法?也就是说,根据我在 JOptionPane 中的输入,我可以在不创建新的确认对话框的情况下更改图标吗?

最佳答案

如图here ,您可以将 JOptionPane 添加到 Dialog 并监听所需的 PropertyChangeEvent。下面的示例响应于单击按钮在两个 UIManager 图标之间切换。

image

JDialog d = new JDialog();
d.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
final Icon PENDING = UIManager.getIcon("html.pendingImage");
final Icon MISSING = UIManager.getIcon("html.missingImage");
final JOptionPane optionPane = new JOptionPane("Click a Button",
JOptionPane.QUESTION_MESSAGE, JOptionPane.YES_NO_OPTION);
optionPane.addPropertyChangeListener(new PropertyChangeListener() {
@Override
public void propertyChange(PropertyChangeEvent e) {
if (e.getPropertyName().equals(JOptionPane.VALUE_PROPERTY)) {
Integer value = (Integer) e.getNewValue();
if (value.intValue() == JOptionPane.YES_OPTION) {
optionPane.setIcon(PENDING);
} else {
optionPane.setIcon(MISSING);
}
}
}
});
d.setContentPane(optionPane);
d.pack();
d.setLocationRelativeTo(null);
d.setVisible(true);

关于java - 更改 JOptionPane 中的图标,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16826009/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com