Auto size wx.StaticText

Grant Edwards invalid at invalid.invalid
Wed Sep 22 14:38:34 EDT 2010


On 2010-09-22, Dani Valverde <dani.valverde at gmail.com> wrote:

> Is there a way to automatically set the size of a wx.StaticText to fit 
> its content?

According to the docs, it should do that by default:

   http://xoomer.virgilio.it/infinity77/wxPython/Widgets/wx.StaticText.html

Window Styles

  Window Style          Description
  
  wx.ALIGN_LEFT         Align the text to the left

  wx.ALIGN_RIGHT        Align the text to the right

  wx.ALIGN_CENTRE       Center the text (horizontally)

  wx.ST_NO_AUTORESIZE   By default, the control will adjust its size to
                        exactly fit to the size of the text when
                        SetLabel is called. If this style flag is
                        given, the control will not change its size
                        (this style is especially useful with controls
                        which also have wx.ALIGN_RIGHT or
                        wx.ALIGN_CENTER style because otherwise they
                        won't make sense any longer after a call
                        to SetLabel)


-- 
Grant Edwards               grant.b.edwards        Yow! PUNK ROCK!!  DISCO
                                  at               DUCK!!  BIRTH CONTROL!!
                              gmail.com            



More information about the Python-list mailing list