gpt4 book ai didi

java - 如何在一个 Choice 上创建一个函数来改变其他 Choice 的内容

转载 作者:行者123 更新时间:2023-12-02 07:55:29 26 4
gpt4 key购买 nike

我已经尝试过 ActionListener 和 ItemListener,但它不起作用,而且我也尝试过搜索可能适用于它的代码和方法,但我只是没有找到它,主要可能是因为 JCombobox 更受欢迎,我的天哪。

这是Java程序的形式。

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

public class HarderCode extends Frame {

Choice Cb1;
Choice Cb2;
Choice Cb3;

Label lbl1;
Label lbl2;
Label lbl3;
Label lbl4;
Label lbl5;

TextField txt1;
// TextField txt2;

Button btn1;


public HarderCode(){
btn1 = new Button(" Click Me ! To Convert ");

Cb1 = new Choice();
Cb2 = new Choice();
Cb3 = new Choice();

Cb1.add("Select A Category");
Cb1.add("Teperature");
Cb1.add("Volume");
Cb1.add("Area");
Cb1.add("Length");
Cb1.add("Weigth");

Cb2.add("Select Unit");
Cb2.add("Celsius");
Cb2.add("Fahrenheit");
Cb2.add("Kelvin");

Cb3.add("Select Unit");
Cb3.add("Celsius");
Cb3.add("Fahrenheit");
Cb3.add("Kelvin");

lbl1 = new Label(" 10000.00 ");
lbl2 = new Label(" From ");
lbl3 = new Label(" To ");
lbl4 = new Label(" Result :");
lbl5 = new Label(" Value to be Converted ");

txt1 = new TextField(7);
// txt2 = new TextField(7);

add(lbl1);
add(lbl2);
add(lbl3);
add(lbl4);
add(lbl5);
add(txt1);
// add(txt2);
add(Cb1);
add(Cb2);
add(Cb3);
add(btn1);

@Override
Cb1.addItemListener(new ItemListener(){

public void actionPerformed(ItemEvent e){

if(Cb1.getSelectedItem().equals("Teperature"));

System.out.print("lallalala");
}
}
);
}

//30

public void paint(Graphics HarderCode){

this.Cb1.setSize(270,20);//
this.Cb1.setLocation(10,40);//

this.Cb2.setSize(130,2);//
this.Cb2.setLocation(10,95);//

this.Cb3.setSize(130,2);//
this.Cb3.setLocation(150,95);//

this.lbl1.setSize(100,20);//
this.lbl1.setLocation(150,230);//

this.lbl2.setSize(50,20);//
this.lbl2.setLocation(10,70);//

this.lbl3.setSize(50,20);//
this.lbl3.setLocation(150,70);//

this.lbl5.setSize(130,20);//
this.lbl5.setLocation(10,130);//

this.txt1.setSize(130,20);//
this.txt1.setLocation(150,130);//

this.btn1.setSize(270,60);//
this.btn1.setLocation(10,160);//

this.lbl4.setSize(80,20);//
this.lbl4.setLocation(40,230);//

// this.txt2.setSize(100,30);
// this.txt2.setLocation(350,200);


}

public static void main (String[] args) {


HarderCode HC = new HarderCode();

HC.setTitle("MultiConverter Ver1.0");
HC.setSize(290,300);
HC.setResizable(false);
HC.setVisible(true);

/*

HC.setBackground(Color.YELLOW);
HC.lbl2.setBackground(Color.YELLOW);
HC.lbl3.setBackground(Color.YELLOW);
HC.lbl1.setBackground(Color.YELLOW);
HC.lbl4.setBackground(Color.YELLOW);
HC.lbl5.setBackground(Color.YELLOW);

HC.Cb1.setBackground(Color.BLUE);
HC.Cb2.setBackground(Color.BLUE);
HC.Cb3.setBackground(Color.BLUE);

HC.btn1.setBackground(Color.PINK);

HC.txt1.setBackground(Color.BLUE);

*/
}

}

最佳答案

java.awt.Choice没有单独的数据模型,因此您必须使用removeAll()add() 根据需要。相比之下,javax.swing.JComboBox确实有一个 separable model可以动态更改,如图 here .

关于java - 如何在一个 Choice 上创建一个函数来改变其他 Choice 的内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9719523/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com