You probably want wx.EVT_LEFT_DCLICK, see the ListCtrl demo in the wx demo.
--
http://mail.python.org/mailman/listinfo/python-list
On Wed, 2 Nov 2011 08:08:48 -0700 (PDT), Miki Tebeka
wrote:
>wx.FileDialog shows files and directories. If you need the user to pick one,
>this is the standard way. Otherwise, if you need custom view on the file
>system then probably list control is the right way to go. Again, the demo has
>a
wx.FileDialog shows files and directories. If you need the user to pick one,
this is the standard way. Otherwise, if you need custom view on the file system
then probably list control is the right way to go. Again, the demo has a
working example with sortable list control.
--
http://mail.python
On Tue, 1 Nov 2011 16:14:50 -0700 (PDT), Miki Tebeka
wrote:
>Why not use the build in wx.FileDialog?
>
>Also, have a look at the demo that comes with wxPython. It has an example with
>a sortable list control.
Thanks for responding, How would wx.FileDialog help me in this case? I
am trying to di
Why not use the build in wx.FileDialog?
Also, have a look at the demo that comes with wxPython. It has an example with
a sortable list control.
--
http://mail.python.org/mailman/listinfo/python-list
I am trying to create a small application in wxPython and would like
to ask for some help.
I am trying to display folders and files in ListCtrl but sorted first
folders followed by files (like in a file manager style) but not sure
how to do this? Would I need to do this in code somehow or ListCt