首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 开发语言 > C++ Builder >

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

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

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


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

探讨
CurSor.Hide

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

热点排行