projects
/
wxWidgets.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
reSWIGged
[wxWidgets.git]
/
wxPython
/
samples
/
wxPIA_book
/
Chapter-09
/
startup_tip.py
1
import
wx
2
3
if
__name__
==
"__main__"
:
4
app
=
wx
.
PySimpleApp
()
5
provider
=
wx
.
CreateFileTipProvider
(
"tips.txt"
,
0
)
6
wx
.
ShowTip
(
None
,
provider
,
True
)
7
8