MFC Tutorial - Creating a window with two classes






3.12/5 (20 votes)
Mar 9, 2004
2 min read

158674
This article explains how to create a window in MFC without using the App Wizard. It uses only two classes, CFrameWnd and CWinApp, for creating the window.
Introduction
MFC provides really nice classes for doing Windows programming. It has taken away all the pains of SDK, where a programmer is expected to handle everything in the world except writing application logic.
Creating a Window using MFC
The first task to be done in any application is to create a window for an application. MFC provides two important classes viz. CWinApp
and CFrameWnd
, which can be used for creating a window and the application. Both these classes have their own message handling mechanisms, screen-drawing functions etc. To be precise, CWinApp
provides the application level functionalities, and CFrameWnd
provides the functionalities related to GUI.
All these classes are derived from CCmdTarget
which in turn is derived from CObject
. CCmdTarget
is created with the capability to handle Windows messages, which is referred to as Message Maps. If you wonder what this Message map means, "Message maps are macros which take care of the event handling".
The CWinApp
class has an important over-ridable function, InitInstance
, which handles the window creations. The next important one is a data member, m_pMainWnd
(of CWinApp
) which holds the pointer to the window.
Let's write an example and try to understand it. Follow these steps to create an application with minimal usage wizard. The wizard will be used just to create a simple workspace for this MFC tutorial.
Step1:
Create a new project of type Win32 application. In the second screen of the wizard, select the first option. Do not allow the wizard to add any files. Just choose Empty project.
Step 2:
After the project is created, click on Menu -->Project --> Add to Project -->New and select a .cpp file and give a name to it.
Step 3:
Copy and paste the code below:
//MFC1.CPP - MFC Tutorial Part 1 #include <afxwin.h> class MFC_Tutorial_Window :public CFrameWnd { public: MFC_Tutorial_Window() { Create(NULL,"MFC Tutorial Part 1 CoderSource Window"); } }; class MyApp :public CWinApp { MFC_Tutorial_Window *wnd; public: BOOL InitInstance() { wnd = new MFC_Tutorial_Window(); m_pMainWnd = wnd; m_pMainWnd->ShowWindow(SW_SHOW); return TRUE; } }; MyApp theApp ; //End of program MFC Tutorial Part 1
Step 4:
Now, compile the application. It will generate linker errors. The reason is because the MFC libraries are not yet linked.
Do the last step of this MFC tutorial.
Step 5:
Select Menu -->Project --> Settings and General tab. On the first combo box, "Microsoft Foundation classes", and select "Use MFC in shared DLL".
Now, compile and run the program.
This MFC tutorial example creates a simple window with a title called "MFC Tutorial Part 1 CoderSource Window". The window has no contents, menu, or any other controls.
This tutorial is a very simple illustration of how to create a window using MFC.
Note: This article an also be found at Codersource MFC Tutorial 1. The codersource website belongs to this author.