1

JDialog複数のタブを持つ があります。タブの 1 つがチェックボックスの動的リストを作成し、それを に追加します。JPanelこのパネルは に追加されJTabbedPaneます。

この動的リストでは、いくつかの条件に基づいていくつかのチェックボックスを無効にしたいと考えています。

問題は、無効な状態のチェックボックスを追加しても、まだ有効になっていることです。

なぜこのように動作するのか、どこが間違っているのかわかりませんか?

これを実現するために使用されるコード スニペットは次のとおりです。

private void populateComponents() 
{
    cwwObjComponentList = cwwObjOprGeneralSetings.getComponentList();
    cwwObjComponentName = cwwObjOprGeneralSetings.getComponentName();
    cwwObjComponentWithType = cwwObjOprGeneralSetings.getComponentsWithType();

    cwwObjPnlComponents.setLayout(new GridLayout(4, 2));

    String mwwStrInstallationType = null;
    if(Configuration.getParameter(ConfigSettings.InstallationType).equalsIgnoreCase("Enterprise"))
    {
        mwwStrInstallationType = StoreSettingsFrame.cwwStrEnterpriseInstallation;
    }
    else if (Configuration.getParameter(ConfigSettings.InstallationType).equalsIgnoreCase("Server"))
    {
        mwwStrInstallationType = StoreSettingsFrame.cwwStrServerInstallation;
    }
    else 
    {
        mwwStrInstallationType = StoreSettingsFrame.cwwStrClientInstallation;
    }


    for (int i = 0; i < cwwObjComponentList.size(); i++) 
    {
        cwwObjCheckbox = new JCheckBox(cwwObjComponentList.get(i));

        String mwwStrComponentType = cwwObjComponentWithType.get(cwwObjComponentList.get(i));

        if(mwwStrComponentType.equalsIgnoreCase(mwwStrInstallationType))
        {
            cwwObjCheckbox.setEnabled(true);
        }
        else
        {
            cwwObjCheckbox.setEnabled(false);//inspite of disabling few checkboxes, all appear to be enabled
        }

        cwwObjPnlComponents.add(cwwObjCheckbox);


    }
}
4

1 に答える 1

3

この SSCCE では問題なく動作するようです。

DisableMe

import java.awt.*;
import javax.swing.*;

class DisableMe {

    public static void main(String[] args) {
        SwingUtilities.invokeLater(new Runnable() {
            public void run() {
                JPanel gui = new JPanel(new GridLayout(1,0));
                for (int ii=1; ii<7; ii++) {
                    JCheckBox cb = new JCheckBox(""+ii, ii%3==0);
                    cb.setEnabled(ii%2==0);
                    gui.add(cb);
                }
                JOptionPane.showMessageDialog(null, gui);
            }
        });
    }
}

お使いのマシンで期待どおりに動作しますか?

于 2012-02-27T06:31:35.537 に答える