Thread Symbole in Widgets (Sonderzeichen)
(1 answers)
Opened by Kean at 2011-05-13 15:03
Hi,
wenn Deine Ausgabe Unicode unterstützt, kannst Du Pfeile als "\x{2191}" bzw. "\x{2193}" an Deinen String anhängen, ansonsten hilft Dir vielleicht ein anderer Zeichensatz (z.B. 'Symbol' unter Win), allerdings musst Du dann ein extra widget für den Pfeil bauen. Verwendung von -font: Code (perl): (dl
)
1 2 3 4 5 my $fontsize = 8; my $label = $window->Label( -font => "{Symbol} $fontsize {normal}", -text => "\xAD" ); Everyone knows that debugging is twice as hard as writing a program in the first place. So if you're as clever as you can be when you write it, how will you ever debug it? -- Brian Kernighan: "The Elements of Programming Style"
|