Итак, мой вопрос: когда я выбираю «Периметр» из JComboBox, как бы я сделал так, чтобы вкладка (удерживаемая внутри JTabbedPane) выходила вперед?а также с областью или другими вкладками.
private void jComboBox1ActionPerformed(java.awt.event.ActionEvent evt) {
String selectedItem = jComboBox1.getSelectedItem().toString();
if(selectedItem != null)
{
//if perimeter option selected, show the tab for it
if(selectedItem.equals("Perimeter"))
{
//bring the permeter tab to the front, all contained within a tabbedPane
}
if(selectedItem.equals("Area"))
{
//bring the area tab to the front, all contained within a tabbedPane
}
}
}