How to draw object like drawing mouse cursor?
-
I want to draw object like drawing mouse cursor. Explanation. Window and button and etc object is drawn by GDI of system. We can control and draw All window and Desktop. And We can control mousecursor by SetCursor(). But I can't draw object like mouse cursor. For example,, I want to draw a nonmoving triangle like mouse cursor. Can we control the above by GDI32 api ? Please tell me.
-
I want to draw object like drawing mouse cursor. Explanation. Window and button and etc object is drawn by GDI of system. We can control and draw All window and Desktop. And We can control mousecursor by SetCursor(). But I can't draw object like mouse cursor. For example,, I want to draw a nonmoving triangle like mouse cursor. Can we control the above by GDI32 api ? Please tell me.
LoadImage
followed byDrawIconEx
, I think. -
LoadImage
followed byDrawIconEx
, I think.Thank you for the reply. I think that your method draws icon a part of window. We can draw alike mouse cursor.But I can't draw mouse cursor. for example, When We push print-screen key ,We can't see mouse cursor in captured screen. I think it is deep than GDI32. By what method do system draw mouse cursor,too? please tell me...