Add a message dlg explaining how to see the demo samples.

This commit is contained in:
Robin Dunn
2016-07-16 08:59:38 -07:00
parent 128b28c879
commit 67242fb6b4

View File

@@ -305,6 +305,10 @@ class DemoApp(object):
self.app = wx.App()
self.frame = MainFrame(None, -1, "PlotCanvas")
self.frame.Show(True)
wx.CallAfter(wx.MessageBox,
"Various plot types can be shown using the Plot menu. " +
"Check out the Options menu too.",
"wx.lib.plot Demo")
self.app.MainLoop()