Kannst du auch mal den Code posten, den du für den Aufbau deiner
Radiobuttons verwendest ?
Als Gruppe reagieren sie so:
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
#!/usr/bin/perl -w
#
use strict;
use Tk;
my $mw = tkinit();
my $radio = {group1 => [qw/1 2 3 4 5 6 7 8 9/],
group2 => [qw/a b c d e f g h i/]};
foreach my$group (keys %{$radio}) {
if ($group =~ /1/) {
for my$i (0..$#{$radio->{$group}}) {
$mw->Radiobutton(-value => $radio->{$group}->[$i],
-variable => \$radio->{var1},
-text => $radio->{$group}->[$i])->pack(-anchor,"e",-side,"top");
}
}
else {
for my$i (0..$#{$radio->{$group}}) {
$mw->Radiobutton(-value => $radio->{$group}->[$i],
-variable => \$radio->{var2},
-text => $radio->{$group}->[$i])->pack(-anchor,"n",-side,"right");
}
}
}
MainLoop;
Alternativen für den Radiobutton kenne ich nicht.
MfG. Matze
Mit freundlichen Grüßen: Matze