【发布时间】:2014-07-12 04:22:01
【问题描述】:
我有以下代码,一个带有画布和一些按钮的简单窗口,一个在画布内,另一个在画布下方。
问题是,当我向上或向下滚动时,“视图”按钮根本不会移动,而应该是
def initUI(self):
self.content = Canvas()
self.parent.title("window")
self.style = Style()
self.style.theme_use("default")
self.content.pack(fill=BOTH, expand=1)
self.vbar=Scrollbar(self,orient=VERTICAL)
self.vbar.pack(side=RIGHT,fill=Y)
self.vbar.config(command=self.content.yview)
self.content.config(yscrollcommand=self.vbar.set)
outButton = Button(self, text="I'm out", command=lambda: self.buttonOut())
outButton.pack(side=RIGHT)
view = Button(self.content, text="View Profile", command=someting)
view.place(x=235, y=160)
self.pack()
有什么建议吗?
【问题讨论】:
标签: python python-2.7 canvas tkinter