CursorSelectDlg.cpp
上传用户:ywlong9188
上传日期:2022-05-31
资源大小:2656k
文件大小:1k
源码类别:

远程控制编程

开发平台:

C/C++

  1. // CursorSelectDlg.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "drawObj.h"
  5. #include "CursorSelectDlg.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CCursorSelectDlg dialog
  13. CCursorSelectDlg::CCursorSelectDlg(CWnd* pParent /*=NULL*/)
  14. : CDialog(CCursorSelectDlg::IDD, pParent)
  15. {
  16. //{{AFX_DATA_INIT(CCursorSelectDlg)
  17. // NOTE: the ClassWizard will add member initialization here
  18. //}}AFX_DATA_INIT
  19. }
  20. void CCursorSelectDlg::DoDataExchange(CDataExchange* pDX)
  21. {
  22. CDialog::DoDataExchange(pDX);
  23. //{{AFX_DATA_MAP(CCursorSelectDlg)
  24. // NOTE: the ClassWizard will add DDX and DDV calls here
  25. //}}AFX_DATA_MAP
  26. }
  27. BEGIN_MESSAGE_MAP(CCursorSelectDlg, CDialog)
  28. //{{AFX_MSG_MAP(CCursorSelectDlg)
  29. ON_BN_CLICKED(IDC_BUTTON1, OnButton1)
  30. ON_BN_CLICKED(IDC_BUTTON3, OnButton3)
  31. //}}AFX_MSG_MAP
  32. END_MESSAGE_MAP()
  33. /////////////////////////////////////////////////////////////////////////////
  34. // CCursorSelectDlg message handlers
  35. void CCursorSelectDlg::OnButton1() 
  36. {
  37. POSITION pos;
  38. pos = m_list->FindIndex(4);
  39. (m_list->GetAt(pos))->OnEditProperties();
  40. }
  41. void CCursorSelectDlg::OnButton3() 
  42. {
  43. POSITION pos;
  44. pos = m_list->FindIndex(5);
  45. (m_list->GetAt(pos))->OnEditProperties();
  46. }