【鼠标看不见,实际下还在那 只不过透明化而已】 这种效果如何实现

【鼠标看不见,实际上还在那 只不过透明化而已】 这种效果怎么实现?因为要做一个触摸屏的项目 所以要用到这个

【鼠标看不见,实际上还在那 只不过透明化而已】 这种效果怎么实现?
因为要做一个触摸屏的项目 所以要用到这个技术 希望高手指点!!感激不尽 

[解决办法]
CurSor.Hide
[解决办法]

引用:
CurSor.Hide

3楼正解
[解决办法]
private void myButton_MouseEnter(object sender, System.EventArgs e)
{
   // Hide the cursor when the mouse pointer enters the button.
   Cursor.Hide();
}

private void myButton_MouseLeave(object sender, System.EventArgs e)
{
   // Show the cursor when the mouse pointer leaves the button.
   Cursor.Show();
}