TestHMXFormView.cpp
上传用户:yinguanfa
上传日期:2022-02-19
资源大小:400k
文件大小:3k
源码类别:

ListView/ListBox

开发平台:

Visual C++

  1. // TestHMXFormView.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "Test_HMXControls.h"
  5. #include "TestHMXFormView.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CTestHMXFormView
  13. IMPLEMENT_DYNCREATE(CTestHMXFormView, CFormView)
  14. CTestHMXFormView::CTestHMXFormView()
  15. : CHMXFormView(CTestHMXFormView::IDD)
  16. {
  17. //{{AFX_DATA_INIT(CTestHMXFormView)
  18. // NOTE: the ClassWizard will add member initialization here
  19. //}}AFX_DATA_INIT
  20. }
  21. CTestHMXFormView::~CTestHMXFormView()
  22. {
  23. }
  24. void CTestHMXFormView::DoDataExchange(CDataExchange* pDX)
  25. {
  26. CHMXFormView::DoDataExchange(pDX);
  27. //{{AFX_DATA_MAP(CTestHMXFormView)
  28. DDX_Control(pDX, IDC_CHK_API, m_chkAPI);
  29. DDX_Control(pDX, IDC_CHK_CD, m_chkCD);
  30. DDX_Control(pDX, IDC_CHK_GPF, m_chkGPF);
  31. DDX_Control(pDX, IDC_CMB_SELECT, m_cmbSelect);
  32. DDX_Control(pDX, IDC_EDT_FIRST, m_edtFirst);
  33. DDX_Control(pDX, IDC_EDT_LAST, m_edtLast);
  34. DDX_Control(pDX, IDC_LBL_COMBO, m_lblCombo);
  35. DDX_Control(pDX, IDC_LBL_FIRST, m_lblFirst);
  36. DDX_Control(pDX, IDC_LBL_LAST, m_lblLast);
  37. DDX_Control(pDX, IDC_LBL_MAIN, m_lblMain);
  38. //}}AFX_DATA_MAP
  39. }
  40. BEGIN_MESSAGE_MAP(CTestHMXFormView, CHMXFormView)
  41. //{{AFX_MSG_MAP(CTestHMXFormView)
  42. ON_BN_CLICKED(IDC_BTN_SET_BK_COLOR, OnBtnSetBkColor)
  43. ON_BN_CLICKED(IDC_BTN_SET_BK_BMP, OnBtnSetBkBmp)
  44. //}}AFX_MSG_MAP
  45. END_MESSAGE_MAP()
  46. /////////////////////////////////////////////////////////////////////////////
  47. // CTestHMXFormView diagnostics
  48. #ifdef _DEBUG
  49. void CTestHMXFormView::AssertValid() const
  50. {
  51. CFormView::AssertValid();
  52. }
  53. void CTestHMXFormView::Dump(CDumpContext& dc) const
  54. {
  55. CFormView::Dump(dc);
  56. }
  57. #endif //_DEBUG
  58. /////////////////////////////////////////////////////////////////////////////
  59. // CTestHMXFormView message handlers
  60. void CTestHMXFormView::OnInitialUpdate() 
  61. {
  62. GetParentFrame()->RecalcLayout();
  63. ResizeParentToFit(FALSE);
  64. GetDocument()->SetTitle("HMXFormView");
  65. CHMXFormView::OnInitialUpdate();
  66. // TODO: Add your specialized code here and/or call the base class
  67. m_lblMain.SetTextFont( 10, true, false, "Courier New" );
  68. m_lblMain.SetTextClr( RGB( 128, 128, 200 ) );
  69. m_chkAPI.SetTextFont( 10, true, false, "Verdana" );
  70. m_chkAPI.SetTextClr( RGB( 255, 0, 0) );
  71. m_chkGPF.SetTextFont( 10, true, false, "Verdana" );
  72. m_chkGPF.SetTextClr( RGB( 0, 128, 0) );
  73. m_chkCD.SetTextFont( 10, true, false, "Verdana" );
  74. m_chkCD.SetTextClr( RGB( 0, 0, 255) );
  75. m_edtFirst.SetTextClr( RGB( 128, 0, 0) );
  76. m_edtFirst.SetBkClr( RGB(255, 255, 0) );
  77. m_edtFirst.SetBkClrFocus( RGB( 255, 255, 128) );
  78. m_edtFirst.SetFontBold();
  79. m_cmbSelect.SetTextFont( 12, true, false, "Arial" );
  80. m_cmbSelect.SetBkClr( RGB( 0, 0, 0) );
  81. m_cmbSelect.SetTextClr( RGB( 255, 255, 200 ) );
  82. // set bk image
  83. SetBitmap( "water.bmp", CHMXFormView::BITMAP_STRETCH);
  84. }
  85. void CTestHMXFormView::OnBtnSetBkColor() 
  86. {
  87. // TODO: Add your control notification handler code here
  88. CColorDialog dlg;
  89. // choose your color
  90. if( dlg.DoModal() == IDOK ) {
  91. // set bk color
  92. SetBkClr( dlg.GetColor() );
  93. }
  94. }
  95. void CTestHMXFormView::OnBtnSetBkBmp() 
  96. {
  97. // TODO: Add your control notification handler code here
  98. CFileDialog dlg( TRUE, NULL, NULL, 0, "Bitmap |*.BMP|", this );
  99. // let's choose our preferred background image
  100. if( dlg.DoModal() == IDOK ) {
  101. // set bk image
  102. SetBitmap( dlg.GetPathName(), CHMXDialog::BITMAP_STRETCH );
  103. }
  104. }