I'm design a wxform application, when after adding many items in a wxPanel, I found that I need a wxSizer to wrap the panel.
Unluckily, I found that I need to delete the wxPanel, and add all the items again, waste a lot of time.
My question is: Is it possible that I can either
1, add a wxSizer around the wxPanel
2, Cut the whole panel, and add the wxSizer, then past the whole panel in that wxSizer.
Or, Do I have to manually edit the wxs file? (It is a XML file, but I have tried and failed, wxSmith still delete all the inner items when I reopened the resource, maybe, I did not edit the wxs file correctly)
Thanks.