我是一名Java程序员,从事Python项目和最新版本的WxPython。在Java Swing中,您可以通过覆盖其paint方法来绘制JPanel元素。
我在WxPython中寻找类似的GUI应用程序类。
我在这里看到了这个问题:
Best canvas for drawing in wxPython?
但项目没有更新的事实令我担心。
三年后,除了FloatCanvas或OGL之外还有什么我应该研究的吗?
最终用例我以不同的变焦程度绘制声波。
答案 0 :(得分:8)
只需使用wx.Panel
。
以下是有关绘图上下文功能的一些文档:
http://docs.wxwidgets.org/stable/wx_wxdc.html
http://www.wxpython.org/docs/api/wx.DC-class.html
import wx
class View(wx.Panel):
def __init__(self, parent):
super(View, self).__init__(parent)
self.SetBackgroundStyle(wx.BG_STYLE_CUSTOM)
self.Bind(wx.EVT_SIZE, self.on_size)
self.Bind(wx.EVT_PAINT, self.on_paint)
def on_size(self, event):
event.Skip()
self.Refresh()
def on_paint(self, event):
w, h = self.GetClientSize()
dc = wx.AutoBufferedPaintDC(self)
dc.Clear()
dc.DrawLine(0, 0, w, h)
dc.SetPen(wx.Pen(wx.BLACK, 5))
dc.DrawCircle(w / 2, h / 2, 100)
class Frame(wx.Frame):
def __init__(self):
super(Frame, self).__init__(None)
self.SetTitle('My Title')
self.SetClientSize((500, 500))
self.Center()
self.view = View(self)
def main():
app = wx.App(False)
frame = Frame()
frame.Show()
app.MainLoop()
if __name__ == '__main__':
main()