Java(swing)有这样的按钮吗?

mys*_*eim 6 java swing

例如,libre office有一个带下拉菜单的按钮,但它不是组合框:

按钮快照

Swing有模拟或类似的东西吗?

poi*_*oae 1

不能直接实现,但您可以通过将 ImageIcon 包装到 Button 中轻松实现。(arrow_down.png是向下的黑色箭头)

button = new JButton();  
button.setIcon(new javax.swing.ImageIcon(getClass().getResource("/com/icons/arrow_down.png")));  
button.setBorderPainted(false);  
button.setFocusPainted(false);  
button.setContentAreaFilled(false);  
Run Code Online (Sandbox Code Playgroud)

  • 我认为问题是关于按钮的下拉菜单而不是按钮中的图标?! (5认同)