标签:style blog http java color io
Change ICON of MFC Application and
Dialog
http://www.codeproject.com/Tips/406870/Change-ICON-of-MFC-Application-and-Dialog
#include "FirstApp.h" #include "resource.h" CFirstWnd::CFirstWnd() { Create( NULL, "My First Application", WS_OVERLAPPEDWINDOW ); } BOOL CFirstApp::InitInstance() { m_pMainWnd=new CFirstWnd(); HICON hIcon=::LoadIcon(AfxGetInstanceHandle(),MAKEINTRESOURCE(AFX_ID_STD_FRAME)); m_pMainWnd->SetIcon(hIcon,FALSE); m_pMainWnd->ShowWindow(m_nCmdShow); m_pMainWnd->UpdateWindow(); return true; } CFirstApp firstApp;
Change ICON of MFC Application and Dialog,码迷,mamicode.com
Change ICON of MFC Application and Dialog
标签:style blog http java color io
原文地址:http://www.cnblogs.com/hongjiumu/p/3700338.html