Construct a Ttk Button widget with the parent master. STANDARD OPTIONS class, compound, cursor, image, state, style, takefocus, text, textvariable, underline, width WIDGET-SPECIFIC OPTIONS command, default, width
(self, master=None, **kw)
| 568 | evaluates a command when pressed.""" |
| 569 | |
| 570 | def __init__(self, master=None, **kw): |
| 571 | """Construct a Ttk Button widget with the parent master. |
| 572 | |
| 573 | STANDARD OPTIONS |
| 574 | |
| 575 | class, compound, cursor, image, state, style, takefocus, |
| 576 | text, textvariable, underline, width |
| 577 | |
| 578 | WIDGET-SPECIFIC OPTIONS |
| 579 | |
| 580 | command, default, width |
| 581 | """ |
| 582 | Widget.__init__(self, master, "ttk::button", kw) |
| 583 | |
| 584 | |
| 585 | def invoke(self): |