gpt4 book ai didi

c# - 如果光标在位置

转载 作者:太空宇宙 更新时间:2023-11-03 22:44:26 24 4
gpt4 key购买 nike

if (Cursor.Position == closeButton.Location)
{
closeButton.BackColor = Color.FromArgb(255, 231, 76, 60);
}

这个 if 语句由于某种原因不起作用,有什么帮助吗?

我想检查光标位置是否在位置集中。

最佳答案

您需要检查 ClientRectangle你的按钮的属性。所以这是要使用的正确语法:

if (closeButton.ClientRectangle.Contains(closeButton.PointToClient(Cursor.Position)))
{
closeButton.BackColor = Color.FromArgb(255, 231, 76, 60);
}

关于c# - 如果光标在位置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50653761/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com