使用 wxPython 操作本机 Windows Boarders
在 Windows 中,本机边框的左上角有一个图标和标题。我想知道是否可以使用 wxPython 删除图标和标题,但保留任务栏中显示的图标和标题。
In windows there is an icon and title in the upper left hand corner of the native boarder. I was wondering if it was possible to remove the icon and title, yet keep the icon and title that is displayed in the task bar using wxPython.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为这是不可能的,因为 wxPython 正在包装本机小部件。您也许可以使用自定义 wx.Dialog 通过弄乱您传递给它的样式标志来模拟您想要的内容。
I don't think that's possible because wxPython is wrapping the native widget. You might be able to simulate it what you want using a custom wx.Dialog by messing with the style flags you pass it.