Kenneth Porter
unread,Mar 13, 2025, 7:43:39 PM3/13/25Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to wx-u...@googlegroups.com
I find it useful to mock up my GUI code using wxFormBuilder. In most
cases I can simply derive from the generated classes. In cases where I
need to dynamically create controls, I use it to create a prototype and
then copy and paste what I need into my dynamic code.
Add a suffix to the generated class like _FB. For example, design your
dialog as MyDialog_FB and then, in a separate pair of cpp/h files,
define your logic in a class MyDialog that inherits MyDialog_FB.