Dear,
I tried to split lines with wx.Button with \n.
abutton = wx.Button(self, -1, "Items\n[F1])
It shows two lines in button as I expected.
When I tried with wx.ToggleButton, it doesn't split lines.
bbutton = wx.ToggleButton(self, -1, "Tax On\n[F2])
Is there any other way to split lines on ToggleButton?
Thanks.
Doseok Kim