tags:

views:

148

answers:

2

I want to add scroll bar in my main window. How can I add scroll bar in my main window. Please help me.

+4  A: 

In TK you wouldn't add a scrollbar to the main window, but you create a widget to be scrolled and add scroll bars to scroll it. This is a little complex to do your self so TK has some helpers to make it easier.

TK::Pane can be used to create an empty scrolled container that you can add other widgets to.

Ven'Tatsu
+2  A: 

You can use a Tk::Pane or you can use the Scrolled constructor to create a scrolled Frame or other widget.

my $f = $mw->Scrolled( Frame => @frame_options );
daotoad