wxPython 中的圆角边框

发布于 2024-11-19 08:19:58 字数 181 浏览 1 评论 0原文

有什么方法可以设计圆角 TextCtrl 小部件吗?实际上,我是 wxPython 的新手,并且习惯了 swing

就像在 swing 中一样,他们在 wxPython 中是否也可以自定义小部件的边框?

Is there any way to design a rounded corner TextCtrl widget? Actually I am new to wxPython and I am used to swing.

Like in swing, is their any way in wxPython too to customize the border of the widgets?

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

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

发布评论

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

评论(2

⒈起吃苦の倖褔 2024-11-26 08:19:58

wxPython 大部分使用本机小部件。如果它们没有圆角版本,那么答案是否定的。但是,wxPython 支持自定义小部件,因此您可以使用您想要的任何功能创建自己的文本控件。

wxPython uses native widgets for the most part. If they don't have a rounded version, then the answer is No. However, wxPython supports custom widgets, so you could create your own text control with whatever features you want.

百善笑为先 2024-11-26 08:19:58

你可以尝试这个技巧

import wx

class Frame(wx.Frame):
    def __init__(self):
        wx.Frame.__init__(self, None)
        self.SetBackgroundColour(wx.Colour(0, 0, 50))
        
        ##This control will have round corners
        self.text = wx.TextCtrl(self, size = (100, 50), pos = (50, 100), style = wx.NO_BORDER)
        self.text.SetBackgroundColour(wx.Colour(222, 225, 234))
        
        ##This is to avoid sizers
        text2 = wx.TextCtrl(self, pos = (200, 100))
        
        self.Bind(wx.EVT_PAINT, self.OnPaint)
        
    def OnPaint(self, event):
        dc = wx.PaintDC(self)
        dc.SetPen(wx.Pen(wx.Colour(0, 0, 50)))
        dc.SetBrush(wx.Brush(wx.Colour(222, 225, 234)))
        dc.DrawRoundedRectangle(self.text.GetPosition()[0] - 3, self.text.GetPosition()[1] - 3,
                                self.text.GetSize()[0] + 6, self.text.GetSize()[1] + 6, 5)
        
app = wx.App()
f = Frame()
f.Show(True)
app.MainLoop()

You can try this hack

import wx

class Frame(wx.Frame):
    def __init__(self):
        wx.Frame.__init__(self, None)
        self.SetBackgroundColour(wx.Colour(0, 0, 50))
        
        ##This control will have round corners
        self.text = wx.TextCtrl(self, size = (100, 50), pos = (50, 100), style = wx.NO_BORDER)
        self.text.SetBackgroundColour(wx.Colour(222, 225, 234))
        
        ##This is to avoid sizers
        text2 = wx.TextCtrl(self, pos = (200, 100))
        
        self.Bind(wx.EVT_PAINT, self.OnPaint)
        
    def OnPaint(self, event):
        dc = wx.PaintDC(self)
        dc.SetPen(wx.Pen(wx.Colour(0, 0, 50)))
        dc.SetBrush(wx.Brush(wx.Colour(222, 225, 234)))
        dc.DrawRoundedRectangle(self.text.GetPosition()[0] - 3, self.text.GetPosition()[1] - 3,
                                self.text.GetSize()[0] + 6, self.text.GetSize()[1] + 6, 5)
        
app = wx.App()
f = Frame()
f.Show(True)
app.MainLoop()
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文