System.out.println("此次事件由其它原因触发!");
}
}
});
}
/**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
ItemEvent_1 frame = new ItemEvent_1();
frame.setTitle("选项事件示例");
frame.setVisible(true);
frame.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
frame.setBounds(0, 0, 300, 100);
}
}
作者:Gaowen_HAN