Somehow when I started using wxPython I passed right by XRC. I wish I’d started using it from the beginning, but oh well. I’ve decided to convert the app I’m working on to use XRC - I’m trying desperately to improve my separation of logic/presentation, and I seem to have hit the wall - but I’m stuck on what is probably a very dumb question:
How do I add widgets that aren’t in the list of things XRCed already knows about? Is this what the “unknown” widget is for, and if so what do I do with it?
In this app, I’m using the EditableListBox from gizmos, and the FileBrowseButtonWithHistory. When I’m done with this, I’ll be doing the same with a couple of apps where I use subclassed ListCtrls. In general, how do I refer to them in XRC? I’ve searched Wiki and Google, but everything I’ve found seems to assume that either 1) I’m using only standard controls or 2) I already know what the heck I’m doing.
Thanks in advance (and for not mocking my foolishment!)