有谁知道我如何能够在 JSlider 的事件处理程序中发送选定的值,stateChanged
并将其设置为全局变量?
例如
public class Slider extends JPanel {
public JSlider slider;
public UserFrame frame;
public double[] priceRange;
public static void main(String[] args) throws ClassNotFoundException, SQLException {
new Slider();
}
public Slider() throws ClassNotFoundException, SQLException {
slider = new JSlider();
priceRange = new double[2];
slider.setBorder(BorderFactory.createTitledBorder("Maximum Price in SEK"));
/*
* The minimum and maximum values are queried from the database. Those
* values are then rounded up (maximum) to the nearest 10 SEK.
* For example, if the minimum is 67 SEK and the maximum 95 SEK, then
* the displayed range is [70, 100].
*/
int min = (getMinimumPrice() / 10) * 10 + 10;
int max = (getMaximumPrice() / 10) * 10 + 10;
slider.setMajorTickSpacing(10);
slider.setMinorTickSpacing(5);
slider.setMinimum(min);
slider.setMaximum(max);
slider.setPaintTicks(true);
slider.setPaintLabels(true);
add(slider);
}
public void stateChanged(ChangeEvent e) {
JSlider source = (JSlider)e.getSource();
if (!source.getValueIsAdjusting()) {
slider.getModel().setValue(slider.getModel().getValue());
priceRange[0] = slider.getModel().getValue();
}
}
}
...等等,忽略这些方法getMinimum
,getMaximum
它们只是检索我数据库中的最高值和最低值,但是可以说,当用户释放 JSlider 旋钮时,我想要发生的只是将其设置为priceRange[0]
. 我怎么能做到这一点?我尝试创建一个模型并设置它,每次使用 stateChanged 我也在我的主要代码集中的 actionListener 之外分配类似的东西......
priceRange[0] = slider.getModel().getValue();
然后打印出该结果并获得我设置的最小值。
我真的很感激任何进一步的建议。
有一个伟大的即将到来的假期!:)
一切顺利,马库斯