这是我的矩形形状代码:
if(rect){
gphcs.setColor(Color.BLUE);
if(orangeshp)
gphcs.setColor(Color.ORANGE);
if(greenshp)
gphcs.setColor(Color.GREEN);
gphcs.fillRect(20,35,100,30);
}
我想添加一个调整大小滑块以更改矩形的大小。
以下是我要添加的滑块的示例图片:
我只需要任何简单的代码来创建这个滑块。
谢谢你的时间..
答案 0 :(得分:1)
JSlider size = new JSlider(JSlider.HORIZONTAL, 0, 250, 100);
答案 1 :(得分: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
}