perldoc Tk::Wm might help.
Also on another topic you asked about disabling the resize of the window. Try:
$widget->resizable(0,0);
Where the first digit is the width and the second is the height. In the example above, both are disabled.
Here the width can be resized, but the height is disabled:
$widget->resizable(0,1);
Michael Libeson