• Facebook
  • Twitter
  • Reddit
  • StumbleUpon
  • Digg
  • email

All Samples(9325)  |  Call(0)  |  Derive(0)  |  Import(9325)
No Document.

src/w/x/wxPython-In-Action-HEAD/Chapter-06/example3.py   wxPython-In-Action(Download)
import wx
from example1 import SketchWindow
 
class SketchFrame(wx.Frame):
    def __init__(self, parent):
        wx.Frame.__init__(self, parent, -1, "Sketch Frame",
                size=(800,600))

src/w/x/wxPython-In-Action-HEAD/Chapter-06/example2.py   wxPython-In-Action(Download)
import wx
from example1 import SketchWindow
 
"""
add and refresh a status bar
"""
 

src/w/x/wxPython-In-Action-HEAD/Chapter-06/example1.py   wxPython-In-Action(Download)
import wx
 
 
class SketchWindow(wx.Window):
    def __init__(self, parent, ID):
        wx.Window.__init__(self, parent, ID)
        self.SetBackgroundColour("White")

src/w/x/wxPython-In-Action-HEAD/Chapter-05/testExample.py   wxPython-In-Action(Download)
import unittest
import modelExample
import wx
 
class TestExample(unittest.TestCase):
 
    def setUp(self):

src/w/x/wxPython-In-Action-HEAD/Chapter-05/testEventExample.py   wxPython-In-Action(Download)
import unittest
import modelExample
import wx
 
class TestExample(unittest.TestCase):
 
    def setUp(self):

src/w/x/wxPython-In-Action-HEAD/Chapter-05/modelExample.py   wxPython-In-Action(Download)
#!/usr/bin/env python
 
import wx
import abstractmodel
 
class SimpleName(abstractmodel.AbstractModel):
 

src/w/x/wxPython-In-Action-HEAD/Chapter-05/goodExample.py   wxPython-In-Action(Download)
#!/usr/bin/env python
 
import wx
 
class RefactorExample(wx.Frame):
 
    def __init__(self, parent, id):

src/w/x/wxPython-In-Action-HEAD/Chapter-05/badExample.py   wxPython-In-Action(Download)
#!/usr/bin/env python
 
import wx
 
class RefactorExample(wx.Frame):
 
    def __init__(self, parent, id):

src/w/x/wxPython-In-Action-HEAD/Chapter-01/sample.py   wxPython-In-Action(Download)
#!/bin/env python
import wx
 
class MyFrame(wx.Frame):
 
    def __init__(self):
        wx.Frame.__init__(self, None, -1, "My Frame", size=(300, 300))

src/t/h/thezombieengine-HEAD/trunk/zombie/code/conjurer/conjurer/gui/inspectorexample.py   thezombieengine(Download)
import inspectorstatetab
import inspectorcmdstab
 
import childdialoggui
import wx
 
class __object_inspector(childdialoggui.childDialogGUI):

Previous  5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13  Next