How do you change border line color of wx.StaticBox?
python, wxpython
Solution
This question had discussed in wxPython google group. "wx doesn't provide that level of control over the borders of widgets." Robin Dunn. You can try to create new class inherit it from `wx.StaticBox` and implement `OnPaint` method
Problem
As you can see from the above pic, the border line of wx.StaticBox is always grey on windows, is it possible to change it? I've searched quite a bit, but there doesn't seem to be any properties/attributes for the border line color, so how do you do it? Thanks a lot