37,741
社区成员
发帖
与我相关
我的任务
分享
class MyFrame(wx.Frame):
def __init__(self):
wx.Frame.__init__(self,None,-1,"scroll window",(300,200))
self.scroll = wx.ScrolledWindow(self,-1,wx.DefaultPosition,wx.DefaultSize,wx.VSCROLL)
self.scroll.SetBackgroundColour("WHITE")
self.scroll.SetScrollbars(1,1,1000,2000,True)
self.Bind(wx.EVT_PAINT, self.OnPaint)
def OnPaint(self,event):
# self.myCaret=wx.Caret(self,(100,100))
# self.SetCaret(self.myCaret)
dc=wx.PaintDC(self.scroll)
dc.Clear()
dc.DrawText("hello world!",0,0)