Форум » Вопросы о разработке игр » Смена курсора » Ответить

Смена курсора

Изюмский Шлях: Здрасти! Кто знает как осуществить смену курсора, а также как частный случай просто скрыть его.

Ответов - 1

8daemon: Изюмский Шлях пишет: Здрасти! Кто знает как осуществить смену курсора, а также как частный случай просто скрыть его. Загрузить курсор HCURSOR LoadCursor( HINSTANCE hInstance, LPCTSTR lpCursorName ); Установить курсор HCURSOR SetCursor( HCURSOR hCursor ); Скрыть курсор ShowCursor Function -------------------------------------------------------------------------------- The ShowCursor function displays or hides the cursor. Syntax int ShowCursor( BOOL bShow ); Parameters bShow [in] Specifies whether the internal display counter is to be incremented or decremented. If bShow is TRUE, the display count is incremented by one. If bShow is FALSE, the display count is decremented by one. Return Value The return value specifies the new display counter. Remarks This function sets an internal display counter that determines whether the cursor should be displayed. The cursor is displayed only if the display count is greater than or equal to 0. If a mouse is installed, the initial display count is 0. If no mouse is installed, the display count is –1. MSDN в помощь



полная версия страницы