- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
对于困惑的代码,我感到很抱歉,我在尝试解决这个侧边栏时有点慌张。我正在尝试使用 Tkinter 在框架中构建侧边栏,侧边栏出现并且条目填充到窗口中,尽管滚动条没有构建并且不会向下滚动框架。我正在努力弄清楚如何让它发挥作用,非常感谢您的帮助。
self.x = 50
self.y = 10
if not self.first_search_run:
self.main_frame_content.destroy()
self.main_frame_content_scrollbar.destroy()
self.main_frame_content_canvas.destroy()
self.main_frame_content_handler.destroy()
self.main_frame_content = Frame(main)
self.main_frame_content.place(relx=256/1280, rely=72/720, relwidth=1024/1280, relheight=648/720)
self.main_frame_content_canvas = Canvas(self.main_frame_content)
self.main_frame_content_handler = Frame(self.main_frame_content_canvas)
self.main_frame_content.configure(background=mal_white)
self.main_frame_content_canvas.bind("<Configure>", scroll_handler)
self.main_frame_content_scrollbar = Scrollbar(self.main_frame_content_canvas, orient="vertical", command=self.main_frame_content_canvas)
self.main_frame_content_canvas.configure(yscrollcommand = self.main_frame_content_scrollbar.set)
self.main_frame_content_scrollbar.pack(side="right",fill="y")
self.main_frame_content_canvas.place(relx=0, rely=0, relwidth=1, relheight=1)
self.main_frame_content_canvas.configure(background=mal_white)
self.main_frame_content_handler.configure(background=mal_white)
self.main_frame_content_handler.place(relx=0, rely=0, relwidth=1, relheight=1, anchor=NW)
if self.first_search_run:
self.object_list = []
self.entry_list = []
self.image_list = []
self.entry_builder = 0
self.entry_builder_support = 0
self.first_search_run = False
else:
for entry in self.entry_list:
entry.destroy()
self.object_list = []
self.entry_list = []
self.image_list = []
self.entry_builder = 0
self.entry_builder_support = 0
for entry in self.search_response:
try:
image_load = urllib.request.urlopen(entry[11].text)
except AttributeError:
image_load = urllib.urlopen(entry[11].text)
image_load = image_load.read()
image_load = BytesIO(image_load)
self.image = PIL.Image.open(image_load)
self.image = self.image.resize((144, 203), PIL.Image.ANTIALIAS)
self.entry_image = ImageTk.PhotoImage(self.image)
self.main_content_entry = Canvas(self.main_frame_content_handler)
self.main_content_entry.place(relx=self.x/1024, rely=self.y/648, relwidth=144/1024, relheight=203/648)
self.main_content_entry_tooltip = Tooltip(self.main_content_entry, entry)
self.object_list.append(entry)
self.entry_list.append(self.main_content_entry)
self.image_list.append(self.entry_image)
self.x += 154
self.entry_builder += 1
self.entry_builder_support += 1
if self.entry_builder_support == 6:
self.y += 213
self.x = 50
self.entry_builder_support = 0
self.entry_builder = 0
for image in self.image_list:
self.entry_list[self.entry_builder].create_image(72, 203/2, image = image)
self.entry_builder += 1
最佳答案
题中的代码比较长,无法按原样执行,所以我只是举一个小例子,说明如何通过将框架嵌入 Canvas 来滚动框架。
为了使滚动条能够正确滚动框架,每次框架的大小发生变化时,您都需要更新 Canvas 的 scrollregion
属性。
import tkinter as tk
def on_configure(event):
canvas.configure(scrollregion=canvas.bbox('all'))
root = tk.Tk()
canvas = tk.Canvas(root)
canvas.place(relx=0, rely=0, relheight=1, relwidth=1)
frame = tk.Frame(canvas)
# resize the canvas scrollregion each time the size of the frame changes
frame.bind('<Configure>', on_configure)
# display frame inside the canvas
canvas.create_window(0, 0, window=frame)
scrolly = tk.Scrollbar(root, command=canvas.yview)
scrolly.place(relx=1, rely=0, relheight=1, anchor='ne')
canvas.configure(yscrollcommand=scrolly.set)
# populate the frame
for i in range(20):
tk.Label(frame, text='Label %i' % i).pack()
root.mainloop()
如果您在将此示例改编为您的代码时遇到问题,请告诉我。
关于python - 使用 place 方法在框架中构建滚动条,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43795271/
在通过自动完成输入框查找地址时,我试图从城市或地区获取 Place-id。问题是,当我查找任何地址时,我可以获得城市名称和其他一些详细信息(JSON 格式),但是...... 有没有办法直接从第一个查
我将 Place Picker 添加到我的 android 应用程序中。当您知道要选择的地点的地址并填写研究栏时,它就会起作用。但是我希望用户可以在使用红色选择器时选择他选择的位置,而这部分不起作用。
我已将 Jetpack Compose 从 1.1.0-beta03 升级到 1.1.0-beta04,除了需要做一些更改外什么也没发生,但现在我在“DetailScreen”上启动应用程序时出现此错
$(function () { var input = do
我正在使用Google的Place API自动填充用户键入的城市名称(网页)。加载了API,并使用语言(pt-BR)作为参数,并且使用葡萄牙语正确填充了文本框,但是执行方法getPlace()时,它将
如何将Google Place API评论从5增加到所有评论?目前,我只获得google plus商业页面的5条评论,我想获取所有评论! 有人可以帮忙吗? 最佳答案 您可以联系Google:https
https://google-developers.appspot.com/maps/documentation/javascript/examples/places-autocomplete 我有一
你们中的许多人都曾在 android 中开发过 LBS 应用程序,并且还使用了 Google Places API Web 服务来获取各个地方的信息。而且您可能还注意到,印度的数据并不准确,这意味着您
我有一个应用程序,它使用地点 API 来帮助查找目的地附近的地点(如伦敦)。我更喜欢在附近使用,因为它可以让我专注于一个区域,而且与文本搜索相比,它也更便宜。 不幸的是,我得到的答案没有多大意义。例如
关闭。这个问题是not about programming or software development .它目前不接受答案。 这个问题似乎不是关于 a specific programming
我正在尝试使用 Google Places api 来搜索位置。但不幸的是,我只收到一条响应请求被拒绝的消息。我创建了新的 API key ,但 API 访问菜单显示了一些警告图标,如下图所示,它是否
Google Place API 未获取特定地址的单位编号。 Example: 3/12 Selwyn Avenue Elwood, 3184, Mel, VIC 但有些地址它正在正确获取单元号。 E
Closed. This question does not meet Stack Overflow guidelines。它当前不接受答案。 想要改善这个问题吗?更新问题,以便将其作为on-topi
我正在为运输行业的客户构建一个网站,我正在使用 Google Places API 获取上车地点和目的地。如果接机地点是机场,则一项要求是显示“航类号”字段。 为了确定机场是否从 Google Map
我正在研究以下内容是否可行,如果可以的话,我将如何实现这一目标。 我们会从客户那里收集企业的评论,并希望将这些评论发布到他们的评论中,并将其发布到Google商家信息中。 我想知道如何使我们的网站将这
我们开发了一个用于构建旅行路线的平台。 行程计划(行程)是由用户定义的流程排序的地点组合而成的。 我们想使用Google Places API搜索地点。我们想存储一个place_id,并用它来获取行程
截至今天(2016年5月25日),Google Places API中似乎不再有user_ratings_total的数据。我用它来获得一家企业的评论总数。是否有另一种方法来获取此数据? 最佳答案 我
有没有办法让 Google Places Autocomplete 仅限于一个国家(如法国)? 我有这个:components=country:fr https://maps.googleapis.c
我正在设置一个自定义自动填充字段,在其中显示Google地方信息中的位置以及数据库中与搜索查询匹配的事件。因此,我使用Google地方信息自动填充服务来获取查询预测,而不是将地方信息自动填充功能直接插
自2014年6月24日起,Google已将reference和id字段标记为已弃用,并将其替换为一个place_id。 到目前为止,我只看到place_id的长度恰好是27个字符,但是想知道是否有任何
我是一名优秀的程序员,十分优秀!