Thread Automatische Button-Erzeugung: Funktioniert nicht so richtig (3 answers)
Opened by #Kein Kommentar at 2007-06-17 22:13

#Kein Kommentar
 2007-06-17 23:45
#46517 #46517
User since
2007-06-09
575 Artikel
HausmeisterIn
[default_avatar]
sorry, sorry,
es war eben ein sehr kleines script, deshalb habe ich es noch nicht mit strict geschrieben. nun funktioniert es auch:

Code: (dl )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
use Tk; 
use Tk::Table;

use strict;

##Variablen:
my @ressorts = sort ("Wurst      ", "Brot       ", "Getränke   ", "Bio        ", "Kleidung   ", "Sonstiges  ", "Bus & Bahn ");
my @DATE_DAYS_NAME = qw(Sonntag Montag Dienstag Mittwoch Donnerstag Freitag Samstag);

my (@widgets_label, %widgets_button);

##Hauptfenster:

my $mw = MainWindow-> new (-title => "Testbeispiel");

##Tabelle:

my $table_woche = $mw-> Table (-columns => 8, -rows => 8, -relief  => 'raised', -scrollbars => 0);

foreach my $index (0..6) {
   $widgets_label[$index] = $mw-> Label (-text => $DATE_DAYS_NAME[$index], -font => "Arial 11 bold underline");
   $table_woche-> put (1,$index+1, $widgets_label[$index]);
   $widgets_label[$index] = $mw-> Label (-text => $ressorts[$index], -font => "Courier 11 bold", -justify => 'left');
   $table_woche-> put ($index+2,0, $widgets_label[$index]);
   
   #Buttons mit den Ausgaben
   foreach my $zeile (0..6) {
       $widgets_button{"$DATE_DAYS_NAME[$index]_$ressorts[$zeile]"} = $table_woche-> Button (-textvariable => \$ressorts[$zeile],
-width => 10, -relief => 'sunken', -justify => 'left', -command => sub {print "$ressorts[$zeile], $DATE_DAYS_NAME[$index]\n";});
       $widgets_button{"$DATE_DAYS_NAME[$index]_$ressorts[$zeile]"}-> configure (-activebackground => 'blue');
       $table_woche-> put ($zeile+2,$index+1, $widgets_button{"$DATE_DAYS_NAME[$index]_$ressorts[$zeile]"});    
   }
}

$table_woche->pack (-side => 'left');

MainLoop;


Danke!
Gerade weil wir alle in einem Boot sitzen, sollten wir froh sein, dass nicht alle auf unserer Seite sind

View full thread Automatische Button-Erzeugung: Funktioniert nicht so richtig