JOptionPane灰色输出一键式

JOptionPane灰色输出一键式,第1张

JOptionPane灰色输出一键式

如果使用JButton,这很容易:

    public class Test{    public static void main(String[] args)    {        final JButton option1 = new JButton("option1");        final JButton option2 = new JButton("option2");        option1.setEnabled(false);        // option2.setEnabled(false);        option1.addActionListener(new ActionListener()        { @Override public void actionPerformed(ActionEvent arg0) {     // pre here }        });        option2.addActionListener(new ActionListener()        { @Override public void actionPerformed(ActionEvent e) {     // pre here }        });        JOptionPane.showOptionDialog(null, "hello", "The Title", JOptionPane.NO_OPTION, JOptionPane.PLAIN_MESSAGE, null, new JButton[]        { option1, option2 }, option1);    }}


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5091718.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-16
下一篇 2022-11-16

发表评论

登录后才能评论

评论列表(0条)

保存