projects
/
wxWidgets.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
minor tab drawing improvements
[wxWidgets.git]
/
wxPython
/
samples
/
wxPIA_book
/
Chapter-01
/
bare.py
1
import
wx
2
3
class
App
(
wx
.
App
):
4
5
def
OnInit
(
self
):
6
frame
=
wx
.
Frame
(
parent
=
None
,
title
=
'Bare'
)
7
frame
.
Show
()
8
return True
9
10
app
=
App
()
11
app
.
MainLoop
()