代码之家  ›  专栏  ›  技术社区  ›  Nick

获取Cursors。在Win32或MFC中启动应用程序?

  •  0
  • Nick  · 技术社区  · 17 年前

    Cursors.AppStarting 使用MFC或Win32函数?

    CWaitCursor

    1 回复  |  直到 17 年前
        1
  •  1
  •   Oren Trutner    17 年前

    // show the app starting cursor
    HCURSOR hPrevCursor = SetCursor(LoadCursor(NULL, IDC_APPSTARTING));
    
    // restore the original cursor when done
    SetCursor(hPrevCursor);
    

    查看以下文档 LoadCursor SetCursor this note