Jump to content

Talk:WxPython

Page contents not supported in other languages.
From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by 24.252.131.59 (talk) at 21:04, 19 May 2009. The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
WikiProject iconComputing Stub‑class
WikiProject iconThis article is within the scope of WikiProject Computing, a collaborative effort to improve the coverage of computers, computing, and information technology on Wikipedia. If you would like to participate, please visit the project page, where you can join the discussion and see a list of open tasks.
StubThis article has been rated as Stub-class on Wikipedia's content assessment scale.
???This article has not yet received a rating on the project's importance scale.
Note icon
This article has been automatically rated by a bot or other tool as Stub-class because it uses a stub template. Please ensure the assessment is correct before removing the |auto= parameter.

"Python is a C++-based language" -- is this really accurate??

No

deleted

==Feature==

wxPython uses widgets provided by the underlying operating system, and therefore provides a native look similar to other programs running on that particular platform. Tkinter, on the other hand, provides a uniform look on all platforms, because it draws its widgets from scratch using the graphics facilities

afaik this is no longer true. tkinter now uses native look and feel.

Benwing 03:14, 28 November 2006 (UTC)[reply]

Simplified Example

I think that the current example is too complicated for an new wxPython programmer. I have made a simplified example that I think illustrates the simplicity and ease of use of the library much better:

import wx
 
class TestFrame(wx.Frame):
    def __init__(self, parent, ID, title):
        wx.Frame.__init__(self, parent, -1, title)
        panel = wx.Panel(self, -1)
        text = wx.StaticText(panel, -1, "Hello, World!")
        self.Show(True)
 
app = wx.App()
frame = TestFrame(None, -1, "Hello, world!")
app.MainLoop()

Does anyone have a problem with replacing the current example with this one? --24.252.131.59 (talk) 17:37, 10 May 2009 (UTC)[reply]

I went ahead and changed it. If you don't like it, then I guess you can change it back to the old one.--24.252.131.59 (talk) 21:04, 19 May 2009 (UTC)[reply]