[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.python

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

Robin Dunn

1/24/2008 5:58:00 PM

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://wx... Java give you jitters? Relax with wxPython!