mirror of
https://github.com/wxWidgets/Phoenix.git
synced 2026-01-06 03:50:06 +01:00
- Latest Phoenix development integrated in the documentation builder; - Added the latest `BitmapComboBox`, `RichToolTip` etc..., with their sample; - Adapted the existing `adv` samples to use `wx.adv` in the code; - Fixed wrong rendering of various snippets. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxPython/Phoenix/trunk@71692 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
9 lines
351 B
Python
9 lines
351 B
Python
|
|
bitmap = wx.Bitmap('splash16.png', wx.BITMAP_TYPE_PNG)
|
|
|
|
splash = wx.adv.SplashScreen(bitmap, wx.SPLASH_CENTRE_ON_SCREEN | wx.SPLASH_TIMEOUT,
|
|
6000, None, -1, wx.DefaultPosition, wx.DefaultSize,
|
|
wx.BORDER_SIMPLE | wx.STAY_ON_TOP)
|
|
|
|
wx.Yield()
|