AttributeError: 'ExcelApp' object has no attribute 'panel_left_frame'
时间: 2023-06-21 11:18:50 浏览: 134
【Python】AttributeError: ‘AutoSchema’ object has no attribute ‘get_link’
5星 · 资源好评率100%
这个错误提示是因为在创建左侧面板时,`self.panel_left_frame` 没有被正确地创建。可能是因为在创建 `scroll` 滚动条时,应该使用 `self.panel_left_frame` 而不是 `self.panel_left`。可以尝试将以下代码:
```
scroll = tk.Scrollbar(master, command=self.panel_left_frame.yview)
scroll.pack(side=tk.LEFT, fill=tk.Y)
```
修改为:
```
scroll = tk.Scrollbar(self.panel_left, command=self.panel_left_frame.yview)
scroll.pack(side=tk.RIGHT, fill=tk.Y)
```
这样应该就可以正确创建 `self.panel_left_frame` 了,解决这个错误。
阅读全文