Where are these error and warning icons as a java resource?

后端 未结 2 568
心在旅途
心在旅途 2020-12-06 01:16

I\'ve got a custom tree cell renderer that I\'m using to render custom icons a JTree, and I really like the warning icon and the error icon that JOptionPane displays for bot

相关标签:
2条回答
  • 2020-12-06 01:29

    And if you want to know about all the icons and their names you can check out: UIManager Defaults

    0 讨论(0)
  • 2020-12-06 01:44

    We use them too via:

    UIManager.getIcon("OptionPane.errorIcon")
    
    UIManager.getIcon("OptionPane.warningIcon")
    
    0 讨论(0)
提交回复
热议问题