开发者

Add calendar control perl win32::GUI application

开发者 https://www.devze.com 2023-02-22 21:41 出处:网络
I need to add a Calendar control in my desktop application, which developed in Perl Win32::GUI. Please provide solution to add cale开发者_如何学JAVAndar control using Perl Win32::GUI.

I need to add a Calendar control in my desktop application, which developed in Perl Win32::GUI. Please provide solution to add cale开发者_如何学JAVAndar control using Perl Win32::GUI.

Madhan


The Win32::GUI::DateTime is combo-box with date selection. You can add such widget like this:

$MainWin->AddDateTime(
    -name   => "Date",
    -pos    => [10,10],
    -size   => [100, 24],
    -format => 'shortdate'
);
0

精彩评论

暂无评论...
验证码 换一张
取 消