0

这是我的矩形形状代码:

 if(rect){
    gphcs.setColor(Color.BLUE);
    if(orangeshp)
        gphcs.setColor(Color.ORANGE);
    if(greenshp)
        gphcs.setColor(Color.GREEN);
    gphcs.fillRect(20,35,100,30);
}

我想添加一个调整大小的滑块以更改矩形的大小。

这是我要添加的滑块的示例图片:

在此处输入图像描述

我只需要任何简单的代码来创建这个滑块。

谢谢你的时间..

4

2 回答 2

1
JSlider slider = new JSlider(JSlider.HORIZONTAL, 0, 250, 100);
slider.addChangeListener(this);


public void stateChanged (ChangeEvent event){
 JSlider slider = (JSlider)event.getSource();
 int value = slider.getValue();
 //manipulate the value in the proption you wants to increase your coordinate of rectangle
 //change the size of rectangle here     
}
于 2013-05-02T19:59:10.617 回答
1
JSlider size = new JSlider(JSlider.HORIZONTAL, 0, 250, 100);
于 2013-05-02T19:31:49.733 回答