Rich
1
Mark,
It's displayed on the widget frame. A title,
Rich
···
On Thu, 13 Dec 2007, Mark Erbaugh wrote:
What is the purpose of the name parameter in most component constructors? Or rather, when would using it be useful?
--
Richard B. Shepard, Ph.D. | Integrity Credibility
Applied Ecosystem Services, Inc. | Innovation
<http://www.appl-ecosys.com> Voice: 503-667-4517 Fax: 503-667-8863
Robin
2
Rich Shepard wrote:
What is the purpose of the name parameter in most component constructors? Or rather, when would using it be useful?
Mark,
It's displayed on the widget frame. A title,
No, that's the Title property, not the name. Here is the docstring for wx.Frame.__init__, the property Mark is asking about is the very last one:
> pydoc wx.Frame.__init__
Help on method __init__ in wx.Frame:
wx.Frame.__init__ = __init__(self, *args, **kwargs) unbound wx._windows.Frame method
__init__(self, Window parent, int id=-1, String title=EmptyString,
Point pos=DefaultPosition, Size size=DefaultSize,
long style=DEFAULT_FRAME_STYLE, String name=FrameNameStr) -> Frame
···
On Thu, 13 Dec 2007, Mark Erbaugh wrote:
--
Robin Dunn
Software Craftsman
http://wxPython.org Java give you jitters? Relax with wxPython!