Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当我从命令行运行我的 wxperl 应用程序时,它运行良好,但是在使用来自以下网址的 PerlApp 后:http ://www.activestate.com/perl-dev-kit创建可执行文件我看到以下调试警报(如下所示)
我已经尝试像这样为 myFrame 添加语言环境,但我仍然缺少一些东西
use Wx::Locale qw(:default);
有什么想法吗?
谢谢,-保罗
这是我所缺少的:
use Wx::Locale qw(:default); Wx::Locale->new( &Wx::wxLANGUAGE_DEFAULT ); use POSIX qw( setlocale LC_ALL ); setlocale(LC_ALL, 'C');
将语言环境设置为 LC_ALL,“C”解决了我的问题。
-保罗