if (Cursor.Position == closeButton.Location){ closeButton.BackColor = Color.FromArgb(255, 231, 76, 60);}这个 if 语句由于某种原因不起作用,有什么帮助吗?我希望它检查光标位置是否在位置集中。
1 回答
慕沐林林
TA贡献2016条经验 获得超9个赞
您需要检查ClientRectangle按钮的属性。所以这是使用的正确语法:
if (closeButton.ClientRectangle.Contains(closeButton.PointToClient(Cursor.Position)))
{
closeButton.BackColor = Color.FromArgb(255, 231, 76, 60);
}
- 1 回答
- 0 关注
- 167 浏览
添加回答
举报
0/150
提交
取消