mirror of
https://github.com/wxWidgets/Phoenix.git
synced 2026-01-23 04:00:09 +01:00
11 lines
293 B
Python
11 lines
293 B
Python
|
|
info = wx.BusyInfo(
|
|
wx.BusyInfoFlags()
|
|
.Parent(window)
|
|
.Icon(icon)
|
|
.Title("Some text")
|
|
.Text("Some more text")
|
|
.Foreground(wx.Colour(...))
|
|
.Background(wx.Colour(...))
|
|
)
|