i'm really new to wxPython but i have seen its potentials browsing the great demo.py.
I have seen that there is not so much documentation about it , i have only found wiki.wxpython.org .... so right now, copying and pasting pieces of code taken from examples, i have created something but i can't exactly understand what i have done
can someone suggest me some well commented examples or tutorials ?
mmmm, bad start :)) wrong title for my post.... sorry
i have started this post with the idea of asking something about wxStyledTextCtrl, but while writing i have understand that is better to start from a lower level
Pietro Cottafavi wrote:
路路路
Hi all, this is my first post
i'm really new to wxPython but i have seen its potentials browsing the great demo.py.
I have seen that there is not so much documentation about it , i have only found wiki.wxpython.org .... so right now, copying and pasting pieces of code taken from examples, i have created something but i can't exactly understand what i have done
can someone suggest me some well commented examples or tutorials ?
thanks, PIetro.
---------------------------------------------------------------------
To unsubscribe, e-mail: wxPython-users-unsubscribe@lists.wxwidgets.org
For additional commands, e-mail: wxPython-users-help@lists.wxwidgets.org
I have seen that there is not so much documentation about it , i have only found wiki.wxpython.org .... so right now, copying and pasting pieces of code taken from examples, i have created something but i can't exactly understand what i have done
yes i have seen it .... not really useful for a newbie.
thanks anyway Robin
Robin Dunn wrote:
路路路
Pietro Cottafavi wrote:
I have seen that there is not so much documentation about it , i have only found wiki.wxpython.org .... so right now, copying and pasting pieces of code taken from examples, i have created something but i can't exactly understand what i have done
Hi Pietro!
Even if i'm a python newbie too, i suggest you first to read more and more
about python before begin with wxPython.
was a great start for me.
Ciao
P.S. Vedo che ha preso pure te python
路路路
yes i have seen it .... not really useful for a newbie.
thanks anyway Robin
Robin Dunn wrote:
Pietro Cottafavi wrote:
I have seen that there is not so much documentation about it , i have
only found wiki.wxpython.org .... so right now, copying and pasting
pieces of code taken from examples, i have created something but i
can't exactly understand what i have done
--------------------------------------------------------------------- To
unsubscribe, e-mail: wxPython-users-unsubscribe@lists.wxwidgets.org For
additional commands, e-mail: wxPython-users-help@lists.wxwidgets.org
yes i have already buy this book, but looking SE|PY and demo.py i was really anxious to start creating something with wxPython :), but you are right is better that first i study a little more python to understand it a little more in depth.
yes i have seen it .... not really useful for a newbie.
thanks anyway Robin
Robin Dunn wrote:
Pietro Cottafavi wrote:
I have seen that there is not so much documentation about it , i have
only found wiki.wxpython.org .... so right now, copying and pasting
pieces of code taken from examples, i have created something but i
can't exactly understand what i have done
--------------------------------------------------------------------- To
unsubscribe, e-mail: wxPython-users-unsubscribe@lists.wxwidgets.org For
additional commands, e-mail: wxPython-users-help@lists.wxwidgets.org
---------------------------------------------------------------------
To unsubscribe, e-mail: wxPython-users-unsubscribe@lists.wxwidgets.org
For additional commands, e-mail: wxPython-users-help@lists.wxwidgets.org
for wxPython... "Use the source Luke, use the source"
you should have 3 things allways available to you (open) the wxpython Demo, the wx documentation and an interpreter shell. The demo to get started (look at the code), the wx docs to see what else is in store for a specific class and the shell to test some of the things (an autocomplition shell like PyShell is a very nice thing to have at hand)
the order of things you need to learn is in my oppinion this:
how to init-start a wx app
how to lay components on a panel/window (the layout mechanism)
how to react to events (the event handler mechanism)
past this all reduces to "get to know the components" (how they look and what events they generate)
one last thing to rememeber:
wxPython was created for python not the other way around so if something can be accomplished in python do it in pure python, trying to learn the wx way might constitute a waste of time.
路路路
On Tue, 20 Apr 2004 11:31:39 +0200, Pietro Cottafavi <pietro.cottafavi@fastwebnet.it> wrote:
hi Alessandro !
yes i have already buy this book, but looking SE|PY and demo.py i was really anxious to start creating something with wxPython :), but you are right is better that first i study a little more python to understand it a little more in depth.
On Tue, 20 Apr 2004 11:31:39 +0200, Pietro Cottafavi > <pietro.cottafavi@fastwebnet.it> wrote:
hi Alessandro !
yes i have already buy this book, but looking SE|PY and demo.py i was really anxious to start creating something with wxPython :), but you are right is better that first i study a little more python to understand it a little more in depth.
for wxPython... "Use the source Luke, use the source"
you should have 3 things allways available to you (open) the wxpython Demo, the wx documentation and an interpreter shell. The demo to get started (look at the code), the wx docs to see what else is in store for a specific class and the shell to test some of the things (an autocomplition shell like PyShell is a very nice thing to have at hand)
the order of things you need to learn is in my oppinion this:
how to init-start a wx app
how to lay components on a panel/window (the layout mechanism)
how to react to events (the event handler mechanism)
past this all reduces to "get to know the components" (how they look and what events they generate)
one last thing to rememeber:
wxPython was created for python not the other way around so if something can be accomplished in python do it in pure python, trying to learn the wx way might constitute a waste of time.