GraphicsPath并不总是刷新自己

时间:2010-02-27 17:02:03

标签: python wxpython graphicscontext graphicspath

此应用程序中的简单曲线仅在从屏幕拖出或调整窗口大小时才会出现。当应用程序刚刚启动时,它不会出现,当窗口最大化或最小化时,它也会消失。但是,所有这些时间都会打印“Path Drawn”,因此所有的绘画功能都被调用。在创建和绘制graphicscontext方面,我有什么问题吗?如果没有,在这些特殊情况下如何让窗口完全刷新?

import wx

class Path(object):
    def paint(self,gc):
        print "Path Drawn"
        gc.SetPen(wx.Pen("#000000",1))
        path=gc.CreatePath()
        path.MoveToPoint(wx.Point2D(10,10))
        path.AddCurveToPoint(wx.Point2D(10,50),
                             wx.Point2D(10,150),
                             wx.Point2D(100,100))
        gc.DrawPath(path)


class TestPane(wx.Panel):
    def __init__(self,parent=None,id=-1):
        wx.Panel.__init__(self,parent,id,style=wx.TAB_TRAVERSAL)
        self.SetBackgroundColour("#FFFFFF")
        self.Bind(wx.EVT_PAINT,self.onPaint)
        self.SetDoubleBuffered(True)
        self.path=Path()

    def onPaint(self, event):
        event.Skip()

        dc=wx.PaintDC(self)
        dc.BeginDrawing()
        gc = wx.GraphicsContext.Create(dc)

        gc.PushState()
        self.path.paint(gc)
        gc.PopState()
        dc.EndDrawing()

    def drawTestRects(self,dc):
        dc.SetBrush(wx.Brush("#000000",style=wx.SOLID))
        dc.DrawRectangle(50,50,50,50)
        dc.DrawRectangle(100,100,100,100)

class TestFrame(wx.Frame):
    def __init__(self, parent, title):
        wx.Frame.__init__(self, parent, title=title, size=(640,480))
        self.mainPanel=TestPane(self,-1)

        self.Show(True)


app = wx.App(False)
frame = TestFrame(None,"Test App")
app.MainLoop()

1 个答案:

答案 0 :(得分:2)

注释掉self.SetDoubleBuffered(True)部分,它会起作用,因为如果同时使用SetDoubleBuffered和GraphicsContext,由于错误http://trac.wxwidgets.org/ticket/11138窗口未正确刷新。

如果你必须使用双缓冲工具,例如首先绘制到MeomryDC然后blit或绘制位图以绘制dc。