禁用 JToggleButton 而不使其变灰
Disable JToggleButton without graying it
我想将 JToggleButton
设置为禁用状态,即用户无法通过单击来切换它。我试过 btn.setEnabled(false);
但它使我的图标变灰,我不想这样。是否有任何其他方法既不会使图标变灰,又不会让用户切换按钮?
您可以取消图标与按钮的关联,并使用适当的布局约束来提供关系的视觉线索,例如使用 JLabel
来显示图标...
import java.awt.EventQueue;
import java.awt.GridBagConstraints;
import java.awt.GridBagLayout;
import java.awt.image.BufferedImage;
import java.io.File;
import java.io.IOException;
import java.util.logging.Level;
import java.util.logging.Logger;
import javax.imageio.ImageIO;
import javax.swing.ImageIcon;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.JToggleButton;
import javax.swing.UIManager;
import javax.swing.UnsupportedLookAndFeelException;
public class Test {
public static void main(String[] args) {
new Test();
}
public Test() {
EventQueue.invokeLater(new Runnable() {
@Override
public void run() {
try {
try {
UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
} catch (ClassNotFoundException | InstantiationException | IllegalAccessException | UnsupportedLookAndFeelException ex) {
ex.printStackTrace();
}
JFrame frame = new JFrame("Testing");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.add(new TestPane());
frame.pack();
frame.setLocationRelativeTo(null);
frame.setVisible(true);
} catch (IOException ex) {
ex.printStackTrace();
}
}
});
}
public class TestPane extends JPanel {
public TestPane() throws IOException {
setLayout(new GridBagLayout());
GridBagConstraints gbc = new GridBagConstraints();
gbc.gridwidth = GridBagConstraints.REMAINDER;
BufferedImage img = ImageIO.read(new File("/Volumes/Disk02/Dropbox/MegaTokyo/thumnails/2.jpg"));
JLabel label = new JLabel(new ImageIcon(img));
add(label, gbc);
JToggleButton btn = new JToggleButton("Click");
btn.setEnabled(false);
add(btn, gbc);
}
}
}
就我个人而言,我认为 JCheckBox
可能更适合这种风格
but my own custom icon to be displayed.
您还可以指定一个 "disabled icon" 供切换按钮使用。它可以是您默认使用的相同图标,也可以是略有不同的图标。
当您指定自己的图标时,您不会获得灰色效果。
只允许单击一次 JToggleButton。
如果有N个JToggleButtons,声明N个int class变量等于0.
(int jtbIntValue1=0, jtbIntValue1=0 ,...jtbIntValueN = 0)
在允许用户按下 JToggle 按钮之前检查 if(jtbIntValueN != 0)
当单击 JToggle 按钮时,将相应的 JToggleButton int 值更新为 1。(从 jtbIntValueN = 0 到 jtbIntValueN = 1).
public class Development1
{
int b1 = 0 ; // For one Button
public Development1()
{
...........
...........
JToggleButton jtb1 = new JToggleButton();
jtb1.addMouseListener(new MouseAdapter() {
@Override
public void mouseClicked(MouseEvent e1)
{
if(b1!=1)
{
if(SwingUtilities.isRightMouseButton(e1) && e1.getClickCount() == 1)
{
jtb1.setIcon(icRight); // Or do whatever you want to
}
else if(SwingUtilities.isLeftMouseButton(e1) && e1.getClickCount() == 1)
{
jtb1.setIcon(icLeft);
}
}
b1 = 1;
}
});
我想将 JToggleButton
设置为禁用状态,即用户无法通过单击来切换它。我试过 btn.setEnabled(false);
但它使我的图标变灰,我不想这样。是否有任何其他方法既不会使图标变灰,又不会让用户切换按钮?
您可以取消图标与按钮的关联,并使用适当的布局约束来提供关系的视觉线索,例如使用 JLabel
来显示图标...
import java.awt.EventQueue;
import java.awt.GridBagConstraints;
import java.awt.GridBagLayout;
import java.awt.image.BufferedImage;
import java.io.File;
import java.io.IOException;
import java.util.logging.Level;
import java.util.logging.Logger;
import javax.imageio.ImageIO;
import javax.swing.ImageIcon;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.JToggleButton;
import javax.swing.UIManager;
import javax.swing.UnsupportedLookAndFeelException;
public class Test {
public static void main(String[] args) {
new Test();
}
public Test() {
EventQueue.invokeLater(new Runnable() {
@Override
public void run() {
try {
try {
UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
} catch (ClassNotFoundException | InstantiationException | IllegalAccessException | UnsupportedLookAndFeelException ex) {
ex.printStackTrace();
}
JFrame frame = new JFrame("Testing");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.add(new TestPane());
frame.pack();
frame.setLocationRelativeTo(null);
frame.setVisible(true);
} catch (IOException ex) {
ex.printStackTrace();
}
}
});
}
public class TestPane extends JPanel {
public TestPane() throws IOException {
setLayout(new GridBagLayout());
GridBagConstraints gbc = new GridBagConstraints();
gbc.gridwidth = GridBagConstraints.REMAINDER;
BufferedImage img = ImageIO.read(new File("/Volumes/Disk02/Dropbox/MegaTokyo/thumnails/2.jpg"));
JLabel label = new JLabel(new ImageIcon(img));
add(label, gbc);
JToggleButton btn = new JToggleButton("Click");
btn.setEnabled(false);
add(btn, gbc);
}
}
}
就我个人而言,我认为 JCheckBox
可能更适合这种风格
but my own custom icon to be displayed.
您还可以指定一个 "disabled icon" 供切换按钮使用。它可以是您默认使用的相同图标,也可以是略有不同的图标。
当您指定自己的图标时,您不会获得灰色效果。
只允许单击一次 JToggleButton。
如果有N个JToggleButtons,声明N个int class变量等于0.
(int jtbIntValue1=0, jtbIntValue1=0 ,...jtbIntValueN = 0)
在允许用户按下 JToggle 按钮之前检查 if(jtbIntValueN != 0)
当单击 JToggle 按钮时,将相应的 JToggleButton int 值更新为 1。(从 jtbIntValueN = 0 到 jtbIntValueN = 1).
public class Development1 { int b1 = 0 ; // For one Button public Development1() { ........... ........... JToggleButton jtb1 = new JToggleButton(); jtb1.addMouseListener(new MouseAdapter() { @Override public void mouseClicked(MouseEvent e1) { if(b1!=1) { if(SwingUtilities.isRightMouseButton(e1) && e1.getClickCount() == 1) { jtb1.setIcon(icRight); // Or do whatever you want to } else if(SwingUtilities.isLeftMouseButton(e1) && e1.getClickCount() == 1) { jtb1.setIcon(icLeft); } } b1 = 1; } });