From: Robin Dunn Date: Mon, 21 Aug 2006 17:32:18 +0000 (+0000) Subject: Added test of using CalendarDateAttr X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/47f116ccbff3b0cda37cceb306a88b79535d0dda?ds=inline Added test of using CalendarDateAttr git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@40726 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/wxPython/demo/CalendarCtrl.py b/wxPython/demo/CalendarCtrl.py index bfe0e706d5..ee5586608b 100644 --- a/wxPython/demo/CalendarCtrl.py +++ b/wxPython/demo/CalendarCtrl.py @@ -34,6 +34,12 @@ class TestPanel(wx.Panel): for month, day in self.holidays: if month == cur_month: self.cal.SetHoliday(day) + if cur_month == 8: + attr = wx.calendar.CalendarDateAttr(border=wx.calendar.CAL_BORDER_SQUARE, + colBorder="blue") + self.cal.SetAttr(14, attr) + else: + self.cal.ResetAttr(14) def OnCalSelChanged(self, evt): cal = evt.GetEventObject()