projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Font dialog fix
[wxWidgets.git]
/
wxPython
/
demo
/
wxCalendarCtrl.py
diff --git
a/wxPython/demo/wxCalendarCtrl.py
b/wxPython/demo/wxCalendarCtrl.py
index b38be582b4e099dfb1a17e2fd07bf4f9562a0445..02c771ad33e88e95094c85681042e9702fc445a4 100644
(file)
--- a/
wxPython/demo/wxCalendarCtrl.py
+++ b/
wxPython/demo/wxCalendarCtrl.py
@@
-10,11
+10,18
@@
class TestPanel(wxPanel):
wxPanel.__init__(self, parent, ID)
self.log = log
wxPanel.__init__(self, parent, ID)
self.log = log
- cal = wxCalendarCtrl(self,
10
1, wxDateTime_Now(), pos = (25,50),
+ cal = wxCalendarCtrl(self,
-
1, wxDateTime_Now(), pos = (25,50),
style = wxCAL_SHOW_HOLIDAYS | wxCAL_SUNDAY_FIRST)
style = wxCAL_SHOW_HOLIDAYS | wxCAL_SUNDAY_FIRST)
- EVT_CALENDAR(self,
101
, self.OnCalSelected)
+ EVT_CALENDAR(self,
cal.GetId()
, self.OnCalSelected)
+ b = wxButton(self, -1, "Destroy the Calendar", pos = (250, 50))
+ EVT_BUTTON(self, b.GetId(), self.OnButton)
+ self.cal = cal
+
+ def OnButton(self, evt):
+ self.cal.Destroy()
+ self.cal = None
def OnCalSelected(self, evt):
self.log.write('OnCalSelected: %s\n' % evt.GetDate())
def OnCalSelected(self, evt):
self.log.write('OnCalSelected: %s\n' % evt.GetDate())