On Fri, 18 Apr 2014, Jason Champion wrote:

I've extensive experience with wxWidgets, but only in C++, which may not be
of help with wxPython.

Jason,

  wxPython wraps the wxWidgets functions.

From the C++ perspective, the creation arguments to wxPanel include the
parent wxFrame, the window ID, the position as a wxPoint, and the size as
a wxSize. It may be as simple as passing frame, size, and position when
you create your wxPanel -- I know the defaults have varied over the years.

Have you tried:

panel = wxPanel(your_wx_frame, id, wxPoint(0,0), wxSize(640, 480)) or
something similar?

  I've tried several iterations based on what worked in the past and what I
find on the Web. What I need to find are the wxPython-3.0.0.0 docs that
describe each method for each widget. I don't know if that version the same
as the 'Phoenix' version, but I'll keep looking.

Happy to take this to an offline email thread if you like.

  Perhaps later, thanks.

Rich
_______________________________________________
Portland mailing list
[email protected]
https://mail.python.org/mailman/listinfo/portland

Reply via email to