Thread Button mit Grafik (2 answers)
Opened by popcorn5 at 2006-11-14 10:00

renee
 2006-11-14 10:20
#45931 #45931
User since
2003-08-04
14371 Artikel
ModeratorIn
[Homepage] [default_avatar]
Meinst Du mit Perl/Tk?

Bitmap von Tk:
Code: (dl )
1
2
3
4
5
6
7
8
9
10
#!/usr/bin/perl

use strict;
use warnings;
use Tk;

my $mw = tkinit();
$mw->Button(-bitmap => 'question')->pack();

MainLoop;


Eigene Datei:
Code: (dl )
1
2
3
4
5
6
7
8
9
10
11
12
#!/usr/bin/perl

use strict;
use warnings;
use Tk;
use Tk::Photo;

my $mw = tkinit();
my $photo = $mw->Photo(-file => '/path/to/file.gif');
$mw->Button(-image => $photo)->pack();

MainLoop;
OTRS-Erweiterungen (http://feature-addons.de/)
Frankfurt Perlmongers (http://frankfurt.pm/)
--

Unterlagen OTRS-Workshop 2012: http://otrs.perl-services.de/workshop.html
Perl-Entwicklung: http://perl-services.de/

View full thread Button mit Grafik