Thread Mehrzeilige Texte in Buttons?: geht das? (11 answers)
Opened by Crian at 2003-08-08 14:24

Crian
 2003-08-08 23:38
#41564 #41564
User since
2003-08-04
5873 Artikel
ModeratorIn
[Homepage]
user image
Also... dieses Programm
Code: (dl )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/usr/bin/perl
use diagnostics;
use strict;
use warnings;

use Tk;

my $mw = new MainWindow;
$mw->title('Button mit geteiltem Text?');

$mw->Button(-text    => 'ab\ncd',
           -command => sub{print "\a"},
          )
    ->pack(-side    => 'right',
           -expand  => 1,
           -fill    => 'x',
          );

MainLoop();


erzeugt bei mir diese Tk-Oberfläche:

http://www.duehl.de/lay_back/bilder/f/button_text....

Ich bin ja sooo doof ... es mit '...' zu versuchen - aua http://forum.ingame.de/diablo2/images/smilies/hamm...

Mit "..." siehts doch gleich viel besser aus:

http://www.duehl.de/lay_back/bilder/f/button_text2...\n\n

<!--EDIT|Crian|1060371701-->
s--Pevna-;s.([a-z]).chr((ord($1)-84)%26+97).gee; s^([A-Z])^chr((ord($1)-52)%26+65)^gee;print;

use strict; use warnings; Link zu meiner Perlseite

View full thread Mehrzeilige Texte in Buttons?: geht das?