"tkinter.scrolledtext" --- 滚动文字控件
***************************************

**源代码：** Lib/tkinter/scrolledtext.py

======================================================================

The "tkinter.scrolledtext" module provides a class of the same name
which implements a basic text widget which has a vertical scroll bar
configured to do the "right thing."  Using the "ScrolledText" class is
a lot easier than setting up a text widget and scroll bar directly.

文本控件与滚动条打包在一个 "Frame" 中， "Grid" 方法和 "Pack" 方法的布
局管理器从 "Frame" 对象中获得。这允许 "ScrolledText" 控件可以直接用于
实现大多数正常的布局管理行为。

如果需要更具体的控制，可以使用以下属性：

class tkinter.scrolledtext.ScrolledText(master=None, **kw)

   frame

      围绕文本和滚动条控件的框架。

   vbar

      滚动条控件。
