が無効になっていない私は、タブの複数tabs.Oneを持っているJDialog
は、チェックボックスの動的なリストを移入し、その後JTabbedPane
に追加されJPanel
.Thisパネルに追加しています。無効]チェックボックスが
この動的リストでは、いくつかの条件に基づいていくつかのチェックボックスを無効にしたいと思います。
無効な状態のチェックボックスを追加しても問題は解決されますが、有効になっています。
なぜこのように動作しているのか、どこに間違っているのでしょうか?次のように
これを達成するために使用されるコードスニペットは、次のとおりです。
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);
}
}
すぐに役立つように、[SSCCE](http://sscce.org/)を投稿してください。 –
チェックボックスの状態を変更するものは何もありませんか? –
はい。再度確認してください。 – shabeena