我对Python很陌生并且已经完成了一个小程序。在该程序中,用户能够打开Toplevel窗口作为弹出窗口,其将地图显示为图像文件。我已设法为其添加滚动条并使图像可滚动。
滚动条的原因是支持不同的屏幕分辨率,这样如果显示的图像太大,用户就可以滚动弹出窗口的内容。
我现在想确保滚动条改变大小,当弹出窗口改变大小或由于缺少屏幕大小而未完全拉伸时。到目前为止,只要缩小窗口大小,滚动条就会消失。
这是我打开弹出窗口的函数:
答案 0 :(得分:0)
您需要.rowconfigure()
和.columnconfigure()
方法才能获得所需内容,因为您正在使用网格系统来布局小部件。
为了进一步帮助您,我已经注释了您的一部分代码。虽然您的代码显示了图像,但它不是在Canvas中创建图像的正确方法。您的图像是在位于“画布”顶部的框架中创建的。因此,尽管您可以看到图像和滚动条,但您仍无法滚动图像。请使用我给你的正确代码。
最后评论。学会在将来学习提供简化的完整代码,以便您可以更快地获得帮助。您可以阅读有关mcve here的更多信息。
from tkinter import *
class App(Frame):
def __init__(self, parent, *args, **kwargs):
Frame.__init__(self, parent, *args, **kwargs)
header = "Toplevel"
pfad = "NYCGifathon24-3.png" # change this to your image name
source = "Canvas Image"
self.karte(pfad,header,source)
def karte(self, pfad,header,source): #added 'self'
popup = Toplevel()
popup.title(header)
ksbar=Scrollbar(popup, orient=VERTICAL)
ksbar.grid(row=0, column=1, sticky="ns")
popCanv = Canvas(popup, width=600, height = 800,
scrollregion=(0,0,500,800)) #width=1256, height = 1674)
popCanv.grid(row=0, column=0, sticky="nsew") #added sticky
ksbar.config(command=popCanv.yview)
popCanv.config(yscrollcommand = ksbar.set)
## Commented codes are inappropriate.
## Wrong way to create an image in Canvas.
## Your scrollbars will not be able to scroll the image either
#kframe=Frame(popCanv, width=600, height = 800)
#kframe.grid(row=0, column=0)
#img = PhotoImage(master=kframe, file=pfad)
#imglabel = Label(kframe, image = img)
#imglabel.image = img
#imglabel.grid()
self.img = PhotoImage(file=pfad) #amended
image = popCanv.create_image(300, 400, image=self.img) #correct way of adding an image to canvas
popCanv.create_text(420,790,text=source)
popup.rowconfigure(0, weight=1) #added (answer to your question)
popup.columnconfigure(0, weight=1) #added (answer to your question)
#popup.mainloop()
if __name__ == "__main__":
root = Tk()
app = App(root)
root.mainloop()