tags:

views:

29

answers:

1

please give me some reference about the ui rendering mechanism thanks~

+2  A: 

MFC is merely a thin wrapper around the Win32 API. It provides an object oriented foundation that simplifies the use of the C style Win32 API, but it doesn't have too much brains built into it. If you want to understand the way MFC creates UI, go a bit further and take a look at GDI, which is the API used for UI stuff in Windows.

eran