Python3.7 IDLE横向滚动条 ScrollBar 添加

IDLE 没有横向ScrollBar,度娘上查了一下只查到Python 2.7的。和Python3.7的略有不同。依葫芦画瓢,改了一下。

  1. 打开[Your Python Path]\Lib\idlelib\找到editor.py并打开
  2. 找到
    self.vbar = vbar = Scrollbar(text_frame, name=‘vbar’)
    在下面添加
    self.hbar = hbar = Scrollbar(text_frame, name=‘hbar’,orient=HORIZONTAL)
  3. 找到
    vbar[‘command’] = self.handle_yview
    vbar.pack(side=RIGHT,fill=Y)
    在下面添加
    hbar[‘command’] = self.handle_xview
    hbar.pack(side=BOTTOM, fill=X)
  4. 找到
    text[‘yscrollcommand’] = vbar.set
    在下面添加
    text[‘xscrollcommand’] = hbar.set
  5. 找到函数定义def handle_yview(self, event, *args)在后面添加一个函数定义
def handle_xview(self, event, *args):
    "Handle horizontal scrollbar."
    self.text.xview(event, *args)
    return 'break'

你可能感兴趣的:(python)