如何在wxpython中制作画布(矩形)?

发布于 2024-12-13 13:39:40 字数 283 浏览 0 评论 0原文

我正在尝试制作一个 Windows 画布类型矩形,如果您在理解我的意思时遇到问题,这里是一个图像,

a busy cat

有没有办法在 wxpython 中做到这一点? (另外,有没有办法将其设置为自动调整到窗口宽度-20px?,这样窗口周围的半径,并将调整到用户窗口的大小。

I am trying to make a windows canvas type rectangle, here is an image if you are having issues understanding what i mean,

a busy cat

Is there any way todo this in wxpython? ( also, is there a way to set it to automatically adjust to the window width -20px?, so a radius around the window, and will adjust to the users window size.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

你怎么这么可爱啊 2024-12-20 13:39:40

编辑:我在 wxPython IRC 频道上询问,一位名为“r4z”的人对我的代码进行了以下编辑,该代码在 Windows 7 上适用于我。

import wx

########################################################################
class MyPanel(wx.Panel):
    """"""

    #----------------------------------------------------------------------
    def __init__(self, parent):
        """Constructor"""
        wx.Panel.__init__(self, parent)
        self.Bind(wx.EVT_PAINT, self.OnPaint)

    #----------------------------------------------------------------------
    def OnPaint(self, event):
        """"""
        pdc = wx.PaintDC(self)
        try:
            dc = wx.GCDC(pdc)
        except:
            dc = pdc

        w, h = self.GetSizeTuple()
        w = w - 10
        h = h - 10

        dc.Clear()
        dc.DrawRectangle(x=5, y=5, width=w, height=h)


#----------------------------------------------------------------------
def OnSize(event):
    event.EventObject.Refresh()
    event.Skip()


if __name__ == "__main__":
    app = wx.App(False)
    frame = wx.Frame(None, title="Test")
    panel = MyPanel(frame)
    frame.Bind(wx.EVT_SIZE, OnSize)
    frame.Show()
    app.MainLoop()

或者,您可以查看 wx.StaticBox 小部件。

编辑#2:您也可以像这样设置框架的样式并跳过整个 OnSize 业务:

frame = wx.Frame(None, title="Test", style=wx.DEFAULT_FRAME_STYLE|wx.FULL_REPAINT_ON_RESIZE)

EDIT: I asked on the wxPython IRC channel and a fellow named "r4z" came up with the following edit to my code which worked for me on Windows 7.

import wx

########################################################################
class MyPanel(wx.Panel):
    """"""

    #----------------------------------------------------------------------
    def __init__(self, parent):
        """Constructor"""
        wx.Panel.__init__(self, parent)
        self.Bind(wx.EVT_PAINT, self.OnPaint)

    #----------------------------------------------------------------------
    def OnPaint(self, event):
        """"""
        pdc = wx.PaintDC(self)
        try:
            dc = wx.GCDC(pdc)
        except:
            dc = pdc

        w, h = self.GetSizeTuple()
        w = w - 10
        h = h - 10

        dc.Clear()
        dc.DrawRectangle(x=5, y=5, width=w, height=h)


#----------------------------------------------------------------------
def OnSize(event):
    event.EventObject.Refresh()
    event.Skip()


if __name__ == "__main__":
    app = wx.App(False)
    frame = wx.Frame(None, title="Test")
    panel = MyPanel(frame)
    frame.Bind(wx.EVT_SIZE, OnSize)
    frame.Show()
    app.MainLoop()

Alternately, you might look at the wx.StaticBox widget.

EDIT #2: You could also just set the frame's style like this and skip the whole OnSize business:

frame = wx.Frame(None, title="Test", style=wx.DEFAULT_FRAME_STYLE|wx.FULL_REPAINT_ON_RESIZE)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文