Fixed some demos

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@12127 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn 2001-10-21 03:44:47 +00:00
parent 729f427637
commit dfef5d5165
4 changed files with 16 additions and 3 deletions

View File

@ -6,8 +6,7 @@ from wxPython.wx import *
class ColoredPanel(wxWindow):
def __init__(self, parent, color):
wxWindow.__init__(self, parent, -1,
wxDefaultPosition, wxDefaultSize, wxRAISED_BORDER)
wxWindow.__init__(self, parent, -1, style = wxSIMPLE_BORDER) #wxRAISED_BORDER)
self.SetBackgroundColour(color)
#---------------------------------------------------------------------------

View File

@ -40,7 +40,7 @@ class TablePanel(wxPanel):
eval(code)
def ReadData(self):
test_file = "TestTable.txt"
test_file = "./data/TestTable.txt"
file = open(test_file,'r',1)
i = 0

View File

@ -6,6 +6,8 @@ import GridSimple
import wxListCtrl
import wxScrolledWindow
import sys
#----------------------------------------------------------------------------
class TestNB(wxNotebook):
@ -85,3 +87,14 @@ This class represents a notebook control, which manages multiple windows with as
To use the class, create a wxNotebook object and call AddPage or InsertPage, passing a window to be used as the page. Do not explicitly delete the window for a page that is currently managed by wxNotebook.
"""
if __name__ == "__main__":
app = wxPySimpleApp()
frame = wxFrame(None, -1, "Test Notebook", size=(600, 400))
win = TestNB(frame, -1, sys.stdout)
frame.Show(true)
app.MainLoop()

View File

@ -17,6 +17,7 @@ class TestPanel(wxPanel):
sc = wxSpinCtrl(self, -1, "", wxPoint(30, 50), wxSize(80, -1))
sc.SetRange(1,100)
sc.SetValue(5)
#sc.Enable(false)
#----------------------------------------------------------------------