[wxPython-users] Issue with docking wx.listctrl window

Robin Dunn robin at alldunn.com
Thu Jan 24 12:58:09 EST 2008


tarun wrote:
> Hello All,
>  
> I'm trying to create a Frame with AuiManager. The code is attached.
>  
> *Problem:*
> - I want 2 windows to be docked in the frame. One is a text control and 
> other is a list control.
> - The text control gets docked, but on trying to dock the list control, 
> all the tabs dis-appear.
>   The tabs appear only when the list control window is kept floating.
>  
> In the attached code the list control window is kept floating. This can 
> be docked
> To see the issue with docking, comment line 33 and un-comment line 35 in 
> the attached file and then try to execute, the issue would be clearly 
> visible. On un-docking the window1, the tabs again appear..
>  
> *Please let  me the solution to this ASAP*


The main problem is that you are putting the listctrl on a panel, but 
you are telling AUI to manage the listctrl, not the panel.  If I 
understand correctly then your other problems stem from that as well. 
Try passing self.log to AddPane, instead of self.log.list.


-- 
Robin Dunn
Software Craftsman
http://wxPython.org  Java give you jitters?  Relax with wxPython!




More information about the Python-list mailing list