引用明日提供的ShapeWindow.class時,總提示未定義是怎麼回事
发表在Java图书答疑
2018-05-02 悬赏:5 学分
《Java项目开发实战入门》第1章 一起来画画
是否精华
是
否
版块置顶:
是
否
我使用的開發工具是IBM的Rational Application Developer里的eclipse,不知道怎麼會這樣?? 求大神指導啊
shapeButton.addActionListener(new ActionListener(){
public void actionPerformed(ActionEvent e){
ShapeWindow shapeWindow = new ShapeWindow(DrawPictureFrame.this);
int shapeButtonWidth = shapeButton.getWidth();
int shapeWindowWidth= shapeWindow.getWidth();
int shapeButtonX= shapeButton.getX();
int shapeButtonY=shapeButton.getY();
int shapeWindowX = getX() +shapeButtonX - (shapeWindowWidth - shapeButtonWidth)/2;
int shapeWindowY = getY()+ shapeButtonY + 80;
shapeWindow.setLocation(shapeWindowX,shapeWindowY);
shapeWindow.setVisible(true);
}
首页上一页 1 下一页尾页 5 条记录 1/1页