+ b.SetToolTipString("This is a bitmap button.")
+ self.Bind(wx.EVT_BUTTON, self.OnClick, b)
+
+
+ b = wx.Button(self, 40, "Flat Button?", (20,150), style=wx.NO_BORDER)
+ b.SetToolTipString("This button has a style flag of wx.NO_BORDER")
+ self.Bind(wx.EVT_BUTTON, self.OnClick, b)