Holger Posted October 15, 2004 Posted October 15, 2004 (edited) Hi outthere here is a small modification to the SetColour-function: ... int nExStyle = 0; ... // Set Text color if specified for this control if (lpCtrl->nTextColor != -1) SetTextColor(hdc, lpCtrl->nTextColor); nExStyle = GetWindowLong(lpCtrl->hWnd,GWL_EXSTYLE); } // set background color if (nExStyle & WS_EX_TRANSPARENT) { SetBkMode(hdc,TRANSPARENT); return (HBRUSH)GetStockObject(NULL_BRUSH); } else { SetBkColor(hdc, nColor); return CreateGUIBrush(nColor); } } // SetColour Maybe you can do something with it So long... Holger Edited October 15, 2004 by Holger Old project:GUI/Tray menu with icons and colors Other old stuff:IconFileScanner, TriState/ThreeState GUI TreeView, GUI ContextMenu created out of a TreeView
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now