![]() |
![]() |
2 Einträge, 1 Seite |
1
2
3
4
5
6
7
8
9
10
11
12
#!/usr/bin/perl
use Tk;
use Tk::FileSelect;
use strict;
use warnings;
my $mw = new MainWindow();
my $fs;
my $btn = $mw->Button( -text => 'Durchsuchen', -command => sub { $fs = $mw->FileSelect(-directory => '.', -verify => ['-d']); print $fs->Show; } )->pack();
MainLoop;
1
2
3
4
5
6
7
8
9
10
11
#!/usr/bin/perl
use Tk;
use Tk::DirSelect;
use strict;
use warnings;
my $main = new MainWindow();
my $ds = $main->DirSelect( -title => 'Ordner wählen', -width => 60, -height => 50);
my $btn = $main->Button( -text => 'Durchsuchen', -command => sub { print $ds->Show('.'); exit;} )->pack();
MainLoop;
![]() |
![]() |
2 Einträge, 1 Seite |