f1c5e92f3f
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@44211 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
16 lines
343 B
Python
16 lines
343 B
Python
import wx
|
|
|
|
def doStuff(stattxt):
|
|
print stattxt.GetSize(), stattxt.GetBestSize()
|
|
stattxt.SetFont(wx.FFont(24, wx.SWISS))
|
|
print stattxt.GetSize(), stattxt.GetBestSize()
|
|
|
|
app = wx.App(False)
|
|
f = wx.Frame(None)
|
|
p = wx.Panel(f)
|
|
f.Show()
|
|
s = wx.StaticText(p, -1, "This is a test", (20,20))
|
|
wx.CallLater(2000, doStuff, s)
|
|
app.MainLoop()
|
|
|