Show some GradientFill usage

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@37564 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn 2006-02-13 19:18:29 +00:00
parent 14b37d975b
commit aa5644aee0

View File

@ -137,6 +137,10 @@ class MyCanvas(wx.ScrolledWindow):
dc.SetPen(old_pen)
dc.DrawRectangle(490,90, 20,20)
dc.GradientFillLinear((20, 260, 50, 50),
"red", "blue")
dc.GradientFillConcentric((20, 325, 50, 50),
"red", "blue", (25,25))
self.DrawSavedLines(dc)
dc.EndDrawing()