VlanView.cpp
上传用户:hbytqc8
上传日期:2014-07-31
资源大小:527k
文件大小:2k
源码类别:

SNMP编程

开发平台:

Visual C++

  1. // VlanView.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "NetMapDoc.h"
  5. #include "NetMap.h"
  6. #include "VlanView.h"
  7. #include "Mainfrm.h"
  8. #ifdef _DEBUG
  9. #define new DEBUG_NEW
  10. #undef THIS_FILE
  11. static char THIS_FILE[] = __FILE__;
  12. #endif
  13. /////////////////////////////////////////////////////////////////////////////
  14. // CVlanView
  15. IMPLEMENT_DYNCREATE(CVlanView, CFormView)
  16. CVlanView::CVlanView()
  17. : CFormView(CVlanView::IDD)
  18. {
  19. //{{AFX_DATA_INIT(CVlanView)
  20. // NOTE: the ClassWizard will add member initialization here
  21. //}}AFX_DATA_INIT
  22. }
  23. CVlanView::~CVlanView()
  24. {
  25. }
  26. void CVlanView::DoDataExchange(CDataExchange* pDX)
  27. {
  28. CFormView::DoDataExchange(pDX);
  29. //{{AFX_DATA_MAP(CVlanView)
  30. // NOTE: the ClassWizard will add DDX and DDV calls here
  31. //}}AFX_DATA_MAP
  32. }
  33. void CVlanView::OnInitialUpdate()
  34. {
  35. CFormView::OnInitialUpdate();
  36. GetParentFrame()->RecalcLayout();
  37. ResizeParentToFit();
  38. CMainFrame *pMain=(CMainFrame *)AfxGetApp()->m_pMainWnd;
  39. pMain->pVlanView=this;
  40. // CNetMapDoc *pDoc=(CNetMapDoc *)GetDocument();
  41. // MessageBox(pDoc->s);
  42. }
  43. BEGIN_MESSAGE_MAP(CVlanView, CFormView)
  44. //{{AFX_MSG_MAP(CVlanView)
  45. // NOTE - the ClassWizard will add and remove mapping macros here.
  46. //}}AFX_MSG_MAP
  47. END_MESSAGE_MAP()
  48. /////////////////////////////////////////////////////////////////////////////
  49. // CVlanView diagnostics
  50. #ifdef _DEBUG
  51. void CVlanView::AssertValid() const
  52. {
  53. CFormView::AssertValid();
  54. }
  55. void CVlanView::Dump(CDumpContext& dc) const
  56. {
  57. CFormView::Dump(dc);
  58. }
  59. #endif //_DEBUG
  60. /////////////////////////////////////////////////////////////////////////////
  61. // CVlanView message handlers