I would draw shaded lines like wx.StaticBoxSizer around object. My
object is grid but issue is generic.
I was thinking to wx.PaintDC but it's bad idea. Or wrong?
···
--
Fabio Spadaro
www.fabiospadaro.com
I would draw shaded lines like wx.StaticBoxSizer around object. My
object is grid but issue is generic.
I was thinking to wx.PaintDC but it's bad idea. Or wrong?
--
Fabio Spadaro
www.fabiospadaro.com
Fabio Spadaro wrote:
I would draw shaded lines like wx.StaticBoxSizer around object. My
object is grid but issue is generic.
I was thinking to wx.PaintDC but it's bad idea. Or wrong?
Doing it during the paint event of the parent would be okay, but why not just use the wx.StaticBox since that is what you are trying to emulate?
--
Robin Dunn
Software Craftsman
it's right.
I need to put an image in the StaticBox before the label.
Is it possible?
2009/9/1 Robin Dunn <robin@alldunn.com>:
Fabio Spadaro wrote:
I would draw shaded lines like wx.StaticBoxSizer around object. My
object is grid but issue is generic.
I was thinking to wx.PaintDC but it's bad idea. Or wrong?Doing it during the paint event of the parent would be okay, but why not
just use the wx.StaticBox since that is what you are trying to emulate?--
Robin Dunn
Software Craftsman
http://wxPython.org>
--
Fabio Spadaro
www.fabiospadaro.com
Fabio Spadaro wrote:
it's right.
I need to put an image in the StaticBox before the label.
Is it possible?
No the wx.StaticBox only supports textual labels.
--
Robin Dunn
Software Craftsman