6 Einträge, 1 Seite |
1
2
3
4
5
6
7
$dialog = $window->Dialog( -title => "Dateneingabe",-default_button => 'Speichern', -buttons => 'Speichern', 'Abbrechen'],);
$dialog->add('LabEntry', -label="Eingabe", -textvariable = \$data);
if ($dialog->Show() eq 'Speichern')
{
&do_something_on($data);
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
my $data = '';
my $DialogRef = $mw->Dialog(
-title => 'Neue Kategorie...',
-text => '',
-bitmap => '',
-default_button => 'Hinzufügen',
-buttons => ['Hinzufügen','Abbrechen'],
);
my $Entry140 = $DialogRef->Entry(-textvariable => \$data, -relief => "sunken",);
$Entry140->place( -x => 8, -y => 15, -height => 20, -width => 130);
if ($DialogRef->Show() eq 'Hinzufügen')
{
print "\n\n DATEN: $data";
}
6 Einträge, 1 Seite |