使用jswing的新功能只是想知道如何制作一个有一些计算的按钮来显示标签上的文字?像3个按钮,它们包含3个不同的值,然后有一个Calculate按钮,将结果显示给标签?
JRadioButton rdbtnNewRadioButton = new JRadioButton("Single");
rdbtnNewRadioButton.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
TotalPay = TotalPay + Single;
}
JRadioButton rdbtnNewRadioButton_1 = new JRadioButton("Two or more");
rdbtnNewRadioButton_1.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
TotalPay = TotalPay + two;
}
});
JRadioButton rdbtnWithPet = new JRadioButton("With Pet");
rdbtnWithPet.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
TotalPay = TotalPay + Pet;
}
});
JButton btnNewButton = new JButton("Calculate");
btnNewButton.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
//What code to insert to display label result?
}
});
JLabel lblNewLabel_2 = new JLabel(""); //result of the total must display here?
lblNewLabel_2.setBounds(232, 47, 110, 69);
frmPaulasPortraits.getContentPane().add(lblNewLabel_2);
答案 0 :(得分:3)
lblNewLabel_2
RadioButton
执行相同的任务:使用某个特定变量更新标签的文本内容尝试使用ActionLisnter
的一个实例。为此,请将其实现到某个类MyActionLister implements ActionListener
并实现actionPerformed
函数。关于设计意义的更多讨论是关于主题的,因为你的问题目前仍然存在。但是,要在每个单选按钮的操作事件上设置text
,您需要执行以下操作:
public void actionPerformed(ActionEvent e) {
TotalPay = TotalPay + Pet;
lblNewLabel_2.setText(""+TotalPay);
}
答案 1 :(得分:3)
要显示哪些代码来显示标签结果?
1。插入此内容:
lblNewLabel_2.setText(String.valueOf(TotalPay));
2。在lblNewLabel_2
之前初始化btnNewButton
并将其设为final
:
final JLabel lblNewLabel_2 = new JLabel("");
3。请勿直接对setBounds
使用JLabel
方法。 LayoutManager
会为您做到这一点
4。 Swing
有很多教程,使用Force,Luke!