我想到的最简单的方法是避免fillOval并使用java.awt.geom包中的几何。因此,您可以声明一个椭圆,因为看起来您绘制的椭圆是静态大小的。
class MyDrawPanel extends JComponent implements MouseListener { Ellipse2D oval = new Ellipse2D.Double(70, 70, 100, 100); .... }
然后在paintComponent中,使用fill(Shape)方法进行绘制。
public void paintComponent(Graphics g) { .... Graphics2D g2d = (Graphics2D) g; .... g2d.fill(oval); }
然后在鼠标事件中,您可以检测单击是否在椭圆形中,如下所示:
public void mouseClicked(MouseEvent e) { if ((e.getButton() == 1) && oval.contains(e.getX(), e.getY()) ) { repaint(); // JOptionPane.showMessageDialog(null,e.getX()+ "n" + e.getY()); } }
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)