Menu

#82 Icons on buttons not display in Windows XP.

1.06
open
nobody
5
2015-03-19
2015-03-19
Artem
No

Icons on buttons not display in Windows XP.

use warnings;
use strict;

use Win32::GUI();

my $wnd = Win32::GUI::Window->new(
    -size => [200, 200]
);

my $ico = Win32::GUI::Icon->new('tick.ico');

my $button = $wnd->AddButton(
    -pos => [10, 10],
    -size => [100, 24],
    -text => 'Ok'
);

$button->SetImage($ico);

$wnd->Center();
$wnd->Show();
Win32::GUI::Dialog;

Discussion


Log in to post a comment.

Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.