I'm trying to create a splitter window
splitter = wxSplitterWindow()
p1 = wxWindow(splitter,-1)
p2 = wxWindow(splitter,-1)
splitter.SetMinimumPaneSize(20)
splitter.SplitVertically(p1, p2, 100)
don't see what's wrong here
What kind of error/behavior are you getting?
Also, your wxSplitterWindow() line doesn't pass a parent window to
wxSplitterWindow. Is that just a typo in your sample code?
···
--
Jason Cater
GNU Enterprise
On Thu, 29 May 2003 13:43:33 -0700 Jonas Geiregat <eniac@sdf-eu.org> wrote:
I'm trying to create a splitter window
splitter = wxSplitterWindow()
p1 = wxWindow(splitter,-1)
p2 = wxWindow(splitter,-1)
splitter.SetMinimumPaneSize(20)
splitter.SplitVertically(p1, p2, 100)
don't see what's wrong here
---------------------------------------------------------------------
To unsubscribe, e-mail: wxPython-users-unsubscribe@lists.wxwindows.org
For additional commands, e-mail:
wxPython-users-help@lists.wxwindows.org
--
Robin
May 29, 2003, 10:19pm
3
Jonas Geiregat wrote:
I'm trying to create a splitter window
splitter = wxSplitterWindow()
p1 = wxWindow(splitter,-1)
p2 = wxWindow(splitter,-1)
splitter.SetMinimumPaneSize(20)
splitter.SplitVertically(p1, p2, 100)
don't see what's wrong here
Neither can we if you don't provide more details.
···
--
Robin Dunn
Software Craftsman
http://wxPython.org Java give you jitters? Relax with wxPython!