需要用光标移动到 height / 2 下面

发布于 2024-10-04 08:45:51 字数 152 浏览 2 评论 0原文

我遇到了光标问题。我需要光标指向“进入游戏”按钮,它位于 windowHeight / 2 下方,并位于 windowHeight / 1 上方。当我输入 1.5 时,它显示“无法转换为浮动”。那我该怎么办呢?

(不要说我应该添加+50,因为它在不同的分辨率上是不同的)。

I got a cursor problem. I need the cursor to point at the "Enter game" button, and it is below windowHeight / 2, and over windowHeight / 1. And when I put 1.5, it says "Cannot convert to float". So what should I do?

(Don't say I should add +50, because it's different on different resolutions).

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

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

发布评论

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

评论(2

森末i 2024-10-11 08:45:51

光标位置不能是 float,因此尝试将其转换为 int

(int)(windowHeight / 1.5)

Cursor position cannot be a float, so try to cast it to an int

(int)(windowHeight / 1.5)
悍妇囚夫 2024-10-11 08:45:51

你可以使用这个,Convert.ToInt32(double_value)

Convert.ToInt32(windowHeight / 1.5)

HTH

You can use this, Convert.ToInt32(double_value)

Convert.ToInt32(windowHeight / 1.5)

HTH

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