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)
| 575 | evaluates a command when pressed.""" |
| 576 | |
| 577 | def __init__(self, master=None, **kw): |
| 578 | """Construct a Ttk Button widget with the parent master. |
| 579 | |
| 580 | STANDARD OPTIONS |
| 581 | |
| 582 | class, compound, cursor, image, state, style, takefocus, |
| 583 | text, textvariable, underline, width |
| 584 | |
| 585 | WIDGET-SPECIFIC OPTIONS |
| 586 | |
| 587 | command, default, width |
| 588 | """ |
| 589 | Widget.__init__(self, master, "ttk::button", kw) |
| 590 | |
| 591 | |
| 592 | def invoke(self): |