wxPython 中的圆角边框
有什么方法可以设计圆角 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
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.
你可以尝试这个技巧
You can try this hack