读书人

【鼠标看不见实际下还在那 只不过透

发布时间: 2013-01-08 14:02:13 作者: rapoo

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

[解决办法]
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();
}

读书人网 >C++ Builder

热点推荐