NAME

Tk::PathEntry - Entry widget for selecting paths with completion

SYNOPSIS

use Tk::PathEntry;
my $pe = $mw->PathEntry(-textvariable => \$path)->pack;
$pe->bind("<Return>" => sub { warn "The pathname is $path\n" });

DESCRIPTION