Thread in HList auf Zeileninhalt zugreifen (7 answers)
Opened by Kalmuecke at 2006-10-27 17:20

styx-cc
 2006-10-30 17:49
#45913 #45913
User since
2006-05-20
533 Artikel
BenutzerIn

user image
Wenn ich dich richtig verstanden habe:
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
#!/usr/bin/perl -w
use strict;

use Tk;
use Tk::HList;

my $main = tkinit();
my $hlist = $main->HList(-columns => 3)->pack(-fill => 'both', -expand => 1);

my $row = 0;
#irgendwas hinzufuegen
for my $col (0..2) {
$hlist -> add($row);
$hlist->itemCreate($row, $col, -itemtype => 'text', -text => "row: $row col: $col");
$row++;
}
#ausgabe
$main -> Button(-text => 'Print', -command => sub{print_out()})->pack;

MainLoop;

sub print_out {
#2,2 is letzte zeile, letzte spalte
#1,1 is zweite zeile, zweite spalte usw
my $outside = $hlist->itemCget(2, 2, -text);
print $outside ."\n";
}


MfG
Pörl.

View full thread in HList auf Zeileninhalt zugreifen