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

Windows编程

开发平台:

Visual C++

  1. //+---------------------------------------------------------------------------
  2. //
  3. //  Microsoft Windows
  4. //  Copyright 1992 - 1997 Microsoft Corporation.
  5. //
  6. //  File:       about.cxx
  7. //
  8. //  Contents:   implementation for the about dialog box
  9. //
  10. //  Classes:    CAbout
  11. //
  12. //  Functions:
  13. //
  14. //  History:    4-12-94   stevebl   Created
  15. //
  16. //----------------------------------------------------------------------------
  17. #include <windows.h>
  18. #include "about.h"
  19. //+---------------------------------------------------------------------------
  20. //
  21. //  Member:     CAbout::DialogProc
  22. //
  23. //  Synopsis:   dialog proc for the About dialog box
  24. //
  25. //  Arguments:  [uMsg]   - message
  26. //              [wParam] - first message parameter
  27. //              [lParam] - second message parameter
  28. //
  29. //  History:    4-12-94   stevebl   Created
  30. //
  31. //----------------------------------------------------------------------------
  32. BOOL CAbout::DialogProc(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam)
  33. {
  34.     switch (uMsg)
  35.     {
  36.     case WM_INITDIALOG:
  37.         return(TRUE);
  38.     case WM_COMMAND:
  39.         if (LOWORD(wParam) == IDOK
  40.             || LOWORD(wParam) == IDCANCEL)
  41.         {
  42.             EndDialog(hwndDlg, TRUE);
  43.             return(TRUE);
  44.         }
  45.     }
  46.     return(FALSE);
  47. }