鼠标隐藏的问题!!(1分)

I

ihweb

Unregistered / Unconfirmed
GUEST, unregistred user!
在程序运行后如何隐藏鼠标呢?
 
L

lvxq

Unregistered / Unconfirmed
GUEST, unregistred user!
WINDOWS API函数
VAR
ShowInt:Integer;
.....

ShowInt:= ShowCursor(FALSE);
此法隐藏鼠标直到返回值< 0;
ShowInt:= ShowCursor(true);
此法隐藏鼠标直到返回值>=0;
当然你在隐藏鼠标时考虑一下如何恢复!
 
C

cheka

Unregistered / Unconfirmed
GUEST, unregistred user!
接受答案了.
 
顶部