I have been trying to put a background image on a listbox control.
The only way I saw possible was to inherit the listbox control and override the OnPaint event.
Code:
class ListboxWithBgimage : ListBox { // Property does not accept null, weird Image bgImage = Resources.list_log; public ListboxWithBgimage() : base() {