Thread [Tk] Tk-Spinbox - Command ausführen (9 answers)
Opened by Kean at 2014-05-22 11:41

GUIfreund
 2014-05-23 16:54
#175680 #175680
User since
2011-08-08
559 Artikel
BenutzerIn
[default_avatar]
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

View full thread [Tk] Tk-Spinbox - Command ausführen