如何避免将鼠标指针悬停在表格上?
问题描述:
答
如果在窗体上添加mousehover事件并从那里隐藏它.
像这样
这是您要找的东西吗?
if you add a mousehover event on your form and hide it from there.
Like this.
Is this what you are looking for?
private void Form1_MouseHover(object sender, EventArgs e)
{
Cursor.Hide();
}