1 2 3 4 5 6 7 8 9 10 11 12 13
Tkx::font_configure( "TkCaptionFont", -family => "Courier", -size => 15, -weight => "normal" ); $top = Tkx::widget->new(q{.}); Tkx::tk___messageBox( -parent => $top, -title => 'Fehler', -type => 'ok', -icon => 'error', -message => 'Diese Eingabe ist falsch' );
2013-04-20T12:36:40 JVBSOFTWas mich etwas wundert ist nur, daß es unter Linux ohne Probleme geht.
QuoteDie Portierung nach Perl/Tk ist ja schon recht betagt.Most of the themed widgets that display text don't have a "font" configuration option, unlike the classic Tk widgets.
1 2 3 4 5 6 7 8 9 10 11 12
my $message = "Das Betriebssystem wird nicht unterstützt !\n'"; Tkx::font_create( 'message_font', -family => 'Arial' , -size => 12, -weight => 'bold' ); Tkx::font_create( 'button_font' , -family => 'Courier New', -size => 10, -weight => 'bold' ); Tkx::option_add( '*Dialog.msg.font' , 'message_font' ); Tkx::option_add( '*Dialog.Button.font', 'button_font' ); Tkx::option_add( '*Dialog.msg.wrapLength', '6i' ); my $top = Tkx::widget->new(q{.}); my $box = Tkx::tk___dialog( './message', 'System Fehler', $message, 'error', 'Beenden', ['Beenden'], );