旋转 JButton 的文本

发布于 2024-10-10 09:15:22 字数 61 浏览 1 评论 0原文

我希望我的 JButton 在悬停时稍微旋转其文本(而不是整个按钮)。我该怎么做?

I want my JButton to rotate its text (not the whole button) a bit when it's hovered. How do I do that?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

给不了的爱 2024-10-17 09:15:22

听起来您需要做两件事:

  • 构建一个显示所需效果的自定义绘制方法。
  • 向按钮添加鼠标运动监听器以检测是否应激活该效果。

祝你好运,我希望这有帮助!

It sounds like you'll need to do 2 things:

  • Build a custom paint method that displays the desired effect.
  • Add a mouse motion listener to the button to detect that the effect should be activated.

Good luck, I hope this helps!

又爬满兰若 2024-10-17 09:15:22

“稍微旋转文本”是什么意思?这样做的目的是什么。当您旋转文本时,当您到达按钮的边缘时,顶部和底部将被剪切。

我认为基本代码是这样的:

public void paintComponent(Graphics g)
{
    if (mouseOver)
    {
        Graphics2D g2d = (Graphics2D)g;
        g2d.rotate(...);
        super.paintComponent(g2d);
        g2d.rotate(...);
    }
    else
        super.paintComponent(g);
}

也许更好的解决方案是将文本向上/向下移动几个像素,而不是旋转,然后您不必担心截断。基本代码应该是相同的,但您将使用 translate(...) 方法。

What does "rotate the text a bit" mean? What is the purpose of this. As you rotate text the top and bottom will be clipped as you reach the edges of the button.

I think the basic code would be something like:

public void paintComponent(Graphics g)
{
    if (mouseOver)
    {
        Graphics2D g2d = (Graphics2D)g;
        g2d.rotate(...);
        super.paintComponent(g2d);
        g2d.rotate(...);
    }
    else
        super.paintComponent(g);
}

Instead of rotating maybe a better solution is to shift the text up/down a couple of pixels, then you don't have to worry about truncation. The basic code should be the same but you would use the translate(...) method.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文