Thread [Tk] Tk-Spinbox - Command ausführen
(9 answers)
Opened by Kean at 2014-05-22 11:41
Wenn es dir nur darum geht, das doppelte Hinschreiben des Callbacks zu vermeiden, gib dem Callback einen Namen:
Code (perl): (dl
)
1 2 3 sub spin_cmd {print $anzeige_jahr_w->get()}; my $spinbox = $mw->Spinbox(-from => 1980, -to => 2037, -command => \&spin_cmd)->pack(); $spinbox->bind('<Return>', \&spin_cmd); Gruß
GUIfreund |