0

您好,我正在使用 Java 中的鼠标滚轮事件进行练习,因此我制作了一个圆圈,当鼠标滚轮移动时,该圆圈会增长和虾米。现在我还想在鼠标指针旁边的屏幕上显示“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(); 
}

}
4

1 回答 1

1

假设您也对定位文本感兴趣。查找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);
}
于 2012-12-04T21:08:41.287 回答