CURSOR.RC
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:1k
源码类别:

Windows编程

开发平台:

Visual C++

  1. //-----------------------------------------------------------------------------
  2. // This is a part of the Microsoft Source Code Samples. 
  3. // Copyright (C) 1993 - 1997 Microsoft Corp.
  4. // All rights reserved. 
  5. //  
  6. // This source code is only intended as a supplement to 
  7. // Microsoft Development Tools and/or WinHelp documentation.
  8. // See these sources for detailed information regarding the 
  9. // Microsoft samples programs.
  10. //-----------------------------------------------------------------------------
  11. #include "windows.h"
  12. #include "cursor.h"
  13. bullseye CURSOR bullseye.cur
  14. CursorMenu MENU
  15. BEGIN
  16.     POPUP        "&Help"
  17.     BEGIN
  18.         MENUITEM "&About Cursor...", IDM_ABOUT
  19.     END
  20. END
  21. AboutBox DIALOG 22, 17, 144, 75
  22. STYLE DS_MODALFRAME | WS_CAPTION | WS_SYSMENU
  23. CAPTION "About Cursor"
  24. BEGIN
  25.     CTEXT "Microsoft Windows"     -1,       0,  5, 144,  8
  26.     CTEXT "Cursor Application"    -1,       0, 14, 144,  8
  27.     CTEXT "Version 3.0"           -1,       0, 34, 144,  8
  28.     DEFPUSHBUTTON "OK"          IDOK,      53, 59,  32, 14,      WS_GROUP
  29. END