How can I create a Panel (Scrolled or normal) that can have Bizobj's.
The reason I need to do this is I am going to be using wxAUI to manage
my GUI and thus need everything to be created as panels not frames.
I was thinking I would just edit the dPanel.py like;
### My Idea ###
...
from dForm import BaseForm
...
class dPanel(BaseForm, _PanelMixin, wx.Panel):
...
BaseForm.__init__(self, preClass, parent, properties,
attProperties, *args, **kwargs)
class dScrollPanel(BaseForm, _PanelMixin, wx.ScrolledWindow):
...
BaseForm.__init__(self, preClass, parent, properties,
attProperties, *args, **kwargs)
######
But am not sure how that will affect things
_______________________________________________
Post Messages to: [email protected]
Subscription Maintenance: http://leafe.com/mailman/listinfo/dabo-users