博為峰小博老師:
當拖動滑塊改變其值的時候會激發(fā)ChangeEvent事件,而監(jiān)聽該事件的監(jiān)聽器需要實現(xiàn)ChangeListener岖沛,該接口只有一個方法stateChanged罢坝。下面將通過實例來講解滑塊在一般開發(fā)中的事件處理過程廓握。其程序代碼如下:
publicclassBWF {
JFramejf=null;
publicBWF(){
jf=newJFrame("博為峰教育");
jf.setSize(300, 200);
JPanelcontentPane=newJPanel();
contentPane.setLayout(newBorderLayout());
jf.setContentPane(contentPane);
JSliders=newJSlider(0,100,0);//創(chuàng)建一個滑塊對象
s.setMajorTickSpacing(20);//設置主刻度
s.setMinorTickSpacing(5);//設置次刻度
s.setPaintTicks(true);//讓刻度顯現(xiàn)出來
s.setSnapToTicks(true);//讓滑塊到附近的整數(shù)處
s.setPaintLabels(true);//讓刻度上的數(shù)字顯示出來
JLabellabel=newJLabel("目前刻度:"+s.getValue());
contentPane.add(s,"South");
contentPane.add(label,"North");
s.addChangeListener(newChangeListener() {
publicvoidstateChanged(ChangeEvente) {
if(e.getSource()==s){
label.setText("目前刻度:"+s.getValue());
}
}
});
jf.setVisible(true);
jf.addWindowListener(newWindowAdapter() {
publicvoidwindowClosing(WindowEvente) {
System.exit(0);
}
});
}
publicstaticvoidmain(String[]args) {
newBWF();
}
}