我正在学习 wxPython 2.8 和 Pycharm 1.2.1。(Python 版本 - 2.6.6,Windows XP)。我的第一个程序(来自http://wiki.wxpython.org/Getting%20Started#A_First_Application:_.22Hello.2C_World.22):
# hi.py
import wx
class MyFrame(wx.Frame):
""" We simply derive a new class of Frame. """
def __init__(self, parent, title):
wx.Frame.__init__(self, parent, title=title, size=(200,100))
self.control = wx.TextCtrl(self, style=wx.TE_MULTILINE)
self.Show(True)
app = wx.App(False)
frame = MyFrame(None, 'Small editor')
app.MainLoop()
启动时运行正常: python hi.py 。但是当它从 PyCharm 开始时,Frame 上没有控件 TextCtrl。为什么这样?