Manipulating Native Windows Boarders with wxPython
In wind开发者_如何学Cows 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.
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.
精彩评论