mirror of
https://github.com/zodiacon/WFPExplorer
synced 2026-06-08 18:39:31 +00:00
25 lines
490 B
C++
25 lines
490 B
C++
// View.cpp : implementation of the CView class
|
|
//
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
#include "pch.h"
|
|
#include "resource.h"
|
|
#include "View.h"
|
|
|
|
BOOL CView::PreTranslateMessage(MSG* pMsg) {
|
|
pMsg;
|
|
return FALSE;
|
|
}
|
|
|
|
void CView::OnFinalMessage(HWND /*hWnd*/) {
|
|
delete this;
|
|
}
|
|
|
|
LRESULT CView::OnPaint(UINT /*uMsg*/, WPARAM /*wParam*/, LPARAM /*lParam*/, BOOL& /*bHandled*/) {
|
|
CPaintDC dc(m_hWnd);
|
|
|
|
//TODO: Add your drawing code here
|
|
|
|
return 0;
|
|
}
|