mirror of
https://github.com/wxWidgets/Phoenix.git
synced 2026-01-19 18:27:07 +01:00
13 lines
504 B
Python
13 lines
504 B
Python
|
|
info = wx.BusyInfo(
|
|
wx.BusyInfoFlags()
|
|
.Parent(self)
|
|
.Icon(wx.ArtProvider.GetIcon(wx.ART_PRINT,
|
|
wx.ART_OTHER, wx.Size(128, 128)))
|
|
.Title("<b>Printing your document</b>")
|
|
.Text("Please wait...")
|
|
.Foreground(wx.WHITE)
|
|
.Background(wx.BLACK)
|
|
.Transparency(4 * wx.ALPHA_OPAQUE / 5)
|
|
)
|