Tagged Questions
The customdraw tag has no wiki summary.
1
vote
1answer
478 views
Custom draw ListBox items with a panel [closed]
Possible Duplicate:
Delphi control that could mimic “Add-ons|Extension list” of Firefox?
I would like to make a custom ListBox control. It could look like Firefox downloads
...
1
vote
1answer
963 views
How to change item size and gap between them in Custom Drown CListCtrl
As far as I know ON_WM_MEASUREITEM does not get called in Custom Draw list control. It is only used if control is Owner Drawn.
I have found a way to do that, but it is somewhat a HACK and I still can ...
0
votes
0answers
462 views
Toolbar NM_CUSTOMDRAW custom draw on Vista/Windows 7 with Aero / Compositing enabled
I am drawing my toolbar buttons using NM_CUSTOMDRAW. This works well on WinXP but on Vista/Win7 with Aero compositing enabled, the toolbar button is blended in the wrong way.
How can I prevent the ...
0
votes
1answer
560 views
SetWindowLong in CustomDraw causes unhandled exception
I am making some changes to a CSliderCtrl using the Custom Draw, the control is to be used in a dialog. Here is the structure:
In my MessageMap I have : ON_NOTIFY_REFLECT_EX(NM_CUSTOMDRAW, ...
0
votes
1answer
659 views
CListCtrl: how to get column width when use different fonts on same column?
I derived a class from CListCtrl called CListCtrlCustomDraw, and use NM_CUSTOMDRAW handler to draw the list.
The problem is I have different fonts for selected item and unselected item, they are ...