Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
2answers
879 views

MFC button with Bitmap and text

I have a Custom CButton which loads a bitmap, using CButton::SetBitmap(bitmap); Meanwhile, I want to display a text above the bitmap, on the same button. I tried implementing OnPaint(), but it does ...
1
vote
4answers
807 views

How do I get the default check box images?

I'm trying to build an owner-drawn check box using CButton, but since I only want to change the text color, I'd like the check-box marks to remain the same. Is there a command that allows me to ...
0
votes
4answers
210 views

MFC CButton background ignored by Windows 7

To change the appearance (background color and text foreground color) of a MFC checkbox and a radiobutton, I used the following implementation which worked fine in Windows2000, half OK in Windows XP, ...
0
votes
3answers
789 views

Custom draw button using uxtheme.dll

I have implemented my custom button inheriting from CButton and drawing it by using uxtheme.dll (DrawThemeBackground with BP_PUSHBUTTON). Everything works fine but I have two statuses (Normal and ...
0
votes
3answers
4k views

How to SetFocus to a CButton so that the border and focus dotted line are visible?

I created a simple dialog-based application, and in the default CDialog added three buttons (by drag-and-dropping them) using the Visual Studio editor. The default OK and Cancel buttons are there ...