Custom draw ListBox items with a panel

1.8k Views Asked by At

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

Firefox downloads example

but instead of hardcoding custom drawing for any particular layout, i would like to allow the layout to be defined separately. Let me explain, the listbox would have a published property Layout: TWinControl The idea is to design a layout in a say panel, so for the example above it would look something like:

Panel with a row layout

Then in customdraw of the ListBox it would use panel's painting. Of course, each row would draw the data for corresponding item. So the controls would be DbAware and recordIndex would be adjusted for each draw. (I don't really use DBAware controls, I use custom data bindings, but it's the same principle)

Has anyone already done something like this ? Think it's a good/bad idea ?

I have started writing a test app and will edit this question to add specific implementation questions,

I am hoping to use only 1 instance of the panel for all rows, it should not be visible on it's own outside of the listbox.

So far I tried using Panel.PaintTo() in the ListBox OnDrawItem, it basically works, but only if Panel is parented and visible elsewhere on the form. Can I make the panel invisible yet still use it's painting ? How would you go about implementing this ?

0

There are 0 best solutions below