gpt4 book ai didi

python - GraphicsPath 并不总是自行刷新

转载 作者:行者123 更新时间:2023-12-01 06:17:42 25 4
gpt4 key购买 nike

此应用程序中的简单曲线仅在将其拖出屏幕或调整窗口大小时才会出现。当应用程序刚启动时它不会出现,当窗口最大化或最小化时它也会消失。然而,所有这些时间,都会打印“Path Drawn”,因此所有绘画函数都会被调用。在创建和绘制图形上下文方面我做错了什么吗?如果没有,在这些特殊情况下如何使窗口完全刷新?

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()

最佳答案

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

如果您必须需要双缓冲,请自行实现,例如首先绘制到 MeomryDC,然后通过 blit 或绘制位图来绘制 dc。

关于python - GraphicsPath 并不总是自行刷新,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2348183/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com