12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- #include "stdafx.h"
- #include "LYFZIPManage.h"
- #include "LYFZIPManageDoc.h"
- #include "LYFZIPManageView.h"
- #ifdef _DEBUG
- #define new DEBUG_NEW
- #undef THIS_FILE
- static char THIS_FILE[] = __FILE__;
- #endif
- IMPLEMENT_DYNCREATE(CLYFZIPManageView, CView)
- BEGIN_MESSAGE_MAP(CLYFZIPManageView, CView)
-
- ON_WM_TIMER()
-
- END_MESSAGE_MAP()
- CLYFZIPManageView::CLYFZIPManageView()
- {
-
- }
- CLYFZIPManageView::~CLYFZIPManageView()
- {
- }
- BOOL CLYFZIPManageView::PreCreateWindow(CREATESTRUCT& cs)
- {
-
-
- return CView::PreCreateWindow(cs);
- }
- void CLYFZIPManageView::OnDraw(CDC* pDC)
- {
- CLYFZIPManageDoc* pDoc = GetDocument();
- ASSERT_VALID(pDoc);
-
- }
- #ifdef _DEBUG
- void CLYFZIPManageView::AssertValid() const
- {
- CView::AssertValid();
- }
- void CLYFZIPManageView::Dump(CDumpContext& dc) const
- {
- CView::Dump(dc);
- }
- CLYFZIPManageDoc* CLYFZIPManageView::GetDocument()
- {
- ASSERT(m_pDocument->IsKindOf(RUNTIME_CLASS(CLYFZIPManageDoc)));
- return (CLYFZIPManageDoc*)m_pDocument;
- }
- #endif
- void CLYFZIPManageView::OnInitialUpdate()
- {
- CView::OnInitialUpdate();
-
- }
- void CLYFZIPManageView::OnTimer(UINT nIDEvent)
- {
-
- }
|