您好,我正在用Java中的mousewheel事件进行练习,因此,当移动mousewheel时,我制作了一个会长出虾的圆。现在,我还想在屏幕上的鼠标指针旁边显示“ MousWheel”的大小。谁能给我示范如何做的例子?

这就是我现在得到的。

public class MouseWheelPanel extends JPanel implements MouseWheelListener {

private int grootte = 50;

public MouseWheelPanel() {
    this.addMouseWheelListener(this);
}

public void paintComponent( Graphics g ) {
    super.paintComponent( g );
    g.setColor( Color.YELLOW );
    g.fillOval( 10, 10, grootte, grootte );
}


public void mouseWheelMoved( MouseWheelEvent e ) {
    // TODO Auto-generated method stub
    String
    grootte += e.getWheelRotation();
    repaint();
}

}

最佳答案

假设您也对放置文本感兴趣。查找FontMetrics。这将使尺寸字符串在圆中居中。

public void paintComponent(Graphics g)
{
    super.paintComponent(g);
    g.setColor(Color.YELLOW);
    g.fillOval(10, 10, grootte, grootte);

    String str = ""+grootte;
    FontMetrics fm = g.getFontMetrics();
    Rectangle2D strBounds = fm.getStringBounds(str, g);

    g.setColor(Color.BLACK);
    g.drawString(str, 10 + grootte/2 - (int)strBounds.getWidth()/2, 10 + grootte/2 + (int)strBounds.getHeight()/2);
}

09-05 07:50