gpt4 book ai didi

java - 绑定(bind)两个 JSpinners 递增和递减

转载 作者:行者123 更新时间:2023-12-01 11:16:45 25 4
gpt4 key购买 nike

我用netbeans Form创建了两个JSpinner,我想链接这两个JSpinner,这样如果其中一个的值递减,另一个的值就会递增,反之亦然。我尝试了这段代码,但它不起作用:

 int currentValue = durexep_spin.getValue();
private void durexep_spinPropertyChange(java.beans.PropertyChangeEvent evt) {


int p = soldexep_spin.getValue();
int q = durexep_spin.getValue();
if(q<currentValue){
soldexep_spin.setValue(p+1);
}
else if (q>currentValue){
soldexep_spin.setValue(p-1);
}

最佳答案

您可以创建 javax.swing.event.ChangeListener 的子类,并在其构造函数中包含两个引用:JSPinner 基础和 JSpinner 图像。然后编写 stateChanged 方法,根据基数的当前值更新图像的值(假设您知道两个值的总和)。

最后,您只需实例化监听器的两个实例并将一个实例附加到每个 JSpinner。

{
// ... Initialization of the JPanel ...
int constantSum=10;
soldexep_spin.addChangeListener(new MyListener(soldexep_spin, durexep_spin, constantSum));
durexep_spin.addChangeListener(new MyListener(durexep_spin, soldexep_spin, constantSum));
}

private class MyListener implements javax.swing.event.ChangeListener
{
private final JSpinner base;

private final JSpinner image;

private final int constantSum;

public MyListener(JSpinner base, JSpinner image, int constantSum)
{
super();
this.base=base;
this.image=image;
this.constantSum=constantSum;
// Initializes the image value in a coherent state:
updateImage();
}

public void stateChanged(ChangeEvent e)
{
updateImage();
}

private void updateImage()
{
int baseValue=((Number)this.base.getValue()).intValue();
int imageValue=((Number)this.image.getValue()).intValue();
int newImageValue=this.constantSum - baseValue;
if (imageValue != newImageValue)
{
// Avoid an infinite loop of changes if the image value was already correct.
this.image.setValue(newImageValue);
}
}

关于java - 绑定(bind)两个 JSpinners 递增和递减,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31732811/

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