MultilineListDemo.cpp
上传用户:tony_wxd
上传日期:2022-06-16
资源大小:40k
文件大小:2k
源码类别:

ListView/ListBox

开发平台:

Visual C++

  1. // MultilineListDemo.cpp : Defines the class behaviors for the application.
  2. //
  3. #include "stdafx.h"
  4. #include "MultilineListDemo.h"
  5. #include "MultilineListDemoDlg.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #endif
  9. // CMultilineListDemoApp
  10. BEGIN_MESSAGE_MAP(CMultilineListDemoApp, CWinApp)
  11. ON_COMMAND(ID_HELP, CWinApp::OnHelp)
  12. END_MESSAGE_MAP()
  13. // CMultilineListDemoApp construction
  14. CMultilineListDemoApp::CMultilineListDemoApp()
  15. {
  16. // TODO: add construction code here,
  17. // Place all significant initialization in InitInstance
  18. }
  19. // The one and only CMultilineListDemoApp object
  20. CMultilineListDemoApp theApp;
  21. // CMultilineListDemoApp initialization
  22. BOOL CMultilineListDemoApp::InitInstance()
  23. {
  24. // InitCommonControls() is required on Windows XP if an application
  25. // manifest specifies use of ComCtl32.dll version 6 or later to enable
  26. // visual styles.  Otherwise, any window creation will fail.
  27. InitCommonControls();
  28. CWinApp::InitInstance();
  29. AfxEnableControlContainer();
  30. // Standard initialization
  31. // If you are not using these features and wish to reduce the size
  32. // of your final executable, you should remove from the following
  33. // the specific initialization routines you do not need
  34. // Change the registry key under which our settings are stored
  35. // TODO: You should modify this string to be something appropriate
  36. // such as the name of your company or organization
  37. SetRegistryKey(_T("Local AppWizard-Generated Applications"));
  38. CMultilineListDemoDlg dlg;
  39. m_pMainWnd = &dlg;
  40. INT_PTR nResponse = dlg.DoModal();
  41. if (nResponse == IDOK)
  42. {
  43. // TODO: Place code here to handle when the dialog is
  44. //  dismissed with OK
  45. }
  46. else if (nResponse == IDCANCEL)
  47. {
  48. // TODO: Place code here to handle when the dialog is
  49. //  dismissed with Cancel
  50. }
  51. // Since the dialog has been closed, return FALSE so that we exit the
  52. //  application, rather than start the application's message pump.
  53. return FALSE;
  54. }