I have made a PopupCheckListBox, and I have a couple of questions about style.
The PopupCheckListBox can be editable (it can add controls necessary to add or delete items in the CheckListBox).
Is the preferred API
items = PopupCheckListBox(self, choices=[‘a’, ‘b’, ‘c’], editable = True)
or should I use the style keyword argument to add my own own styles:
item = PopupCheckListBox(self, choices=[‘a’, ‘b’, ‘c’], style=PCLB_EDITABLE)
Is there a standard form for this sort of thing, or is it coder’s choice?
Josh