我想在中间框架(即“重置”按钮旁边)中创建一个“查看”按钮。因此,当单击“查看”按钮时,它必须在框架的右侧显示图像(我在代码中使用geopandas指定的shapefile)。
请务必明确指定它,因为我是该领域的新手。
pip install --upgrade jupyterhub
答案 0 :(得分:0)
您可以通过创建一个包含两个按钮的框架来将按钮并排放置。然后只需将框架放在所需的位置即可。
示例中的代码应紧接在列表框的代码之后:
bottomMiddleFrame = Frame(middleFrame, bg='thistle')
bottomMiddleFrame.grid(row=1, column=0, columnspan=2, padx=4, pady=4)
Button5 = Button(bottomMiddleFrame, text="Reset", command=forReset)
Button5.grid(row=0, column=0, padx=4, pady=4)
Button6 = Button(bottomMiddleFrame, text="View", command=forView)
Button6.grid(row=0, column=2, padx=4, pady=4)
我使用bg颜色,以便可以在窗口上看到框架。
当然,您还必须创建回调函数。
至于大熊猫,我从未使用过,所以在这里我无法为您提供帮助。