Tagged Questions
The owner-drawn tag has no wiki summary.
2
votes
1answer
335 views
DrawItemEventArgs' “Index” property goes negative sometimes(C#)(RESOLVED)
I have an owner-drawn listbox control.
The problem is that sometimes the DrawItemEventArgs argument passed to my DrawItem event-handler has an Index property of "-1". This is my unethical fix:
...
1
vote
1answer
90 views
Owner drawn tabcontrol has wider tabs
I am trying to custom draw a tabcontrol. When I draw the tabs using the dimensions returned by GetTabRect, the tabs are drawn noticeably wider when compared to how they are normally drawn. I thought ...
1
vote
2answers
231 views
Owner-drawn button with BS_AUTORADIOBUTTON style
How do I get the checked/unchecked state of BS_AUTORADIOBUTTON? My code currently doesn't work.
void CPngButton::DrawItem( LPDRAWITEMSTRUCT lpDIS )
{
ASSERT(lpDIS != NULL);
UINT state = ...
1
vote
2answers
757 views
CListBox's Item size changed when changing the size of the list box even if I specify the size in MeasureItem() method?
I used a class which derives from CListBox, and create it with following:
style:WS_CHILD|WS_VISIBLE |LBS_OWNERDRAWFIXED | WS_VSCROLL | WS_HSCROLL
I expect the ListBox's item to be have a fixed ...
0
votes
4answers
553 views
limit of 64 ownerdraw createwindow buttons
I want to create an array of 256 colored buttons with the owner draw extended style to a dialog box created with the visual studio dialog design tool. I added a loop to the WM_INITDIALOG message ...