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'
);
精彩评论