Background for SDI document
C / C++ / MFC
3
Posts
2
Posters
0
Views
1
Watching
-
I want to add a bitmap as a background to the main Window of SDI document. Can anybody help me what to do? I am really in emergency. I will really appreciate help. Parvez Pathan
Draw the bitmap first in your OnDraw method of your view. Then, draw the rest of your view. You may have to pDC->SetBkMode(TRANSPARENT) to prevent your drawing from hiding the bitmap. onwards and upwards...
-
Draw the bitmap first in your OnDraw method of your view. Then, draw the rest of your view. You may have to pDC->SetBkMode(TRANSPARENT) to prevent your drawing from hiding the bitmap. onwards and upwards...