需要用光标移动到 height / 2 下面
我遇到了光标问题。我需要光标指向“进入游戏”按钮,它位于 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
光标位置不能是 float,因此尝试将其转换为 int
Cursor position cannot be a float, so try to cast it to an int
你可以使用这个,Convert.ToInt32(double_value)
HTH
You can use this, Convert.ToInt32(double_value)
HTH