原文:
16.3. Is there a color editor?
There is. Please see perldoc ColorEditor.pm
or run the Tk/demos/color_editor demo script for more information.
译文:
16.3. 有进行颜色编辑的模块吗?
是的,有。
请用下面的方法查看手册:
perldoc Tk::ColorEditor
(译者注:下面是一个简单的例子:
use Tk;
use Tk::ColorEditor;
$mw=MainWindow->new;
$cref = $mw->ColorEditor(-title => $title, -cursor => 'hand2');
$cref->Show;
MainLoop;
)
另外,对于实际常用到的选择颜色的模块,可以参考widget演示程序中“Common Dialogs”里的“Color picker”例子。