How to get a widget position inside it#39;s layout in Kivy?(如何在 Kivy 的布局中获取小部件位置?)
问题描述
我有一个 GridLayout,我在添加图像后在其上添加了一些图像小部件.
I have a GridLayout and I added some Image widgets on it after adding of images I want to draw a rectangle in each image by using their canvas but I couldn't because I don't know the exact Image widgets positions on GridLayout.
在我的 Python 代码的最后一行:Rectangle(pos = (child.x - 2.4, child.y + 467), size = (70, 70))
In last line of my Python code : Rectangle(pos = (child.x - 2.4, child.y + 467), size = (70, 70))
如何在child中绘制这个矩形(我的方法不好^),
How to draw this rectangle in child(My method is not good^),
还有为什么我的 GridLayout 在设置为 pos_hint = {"center_x" : .5}
后没有居中?
Also Why my GridLayout not coming in center after setting it's pos_hint = {"center_x" : .5}
?
推荐答案
如果我理解的问题是正确的,请尝试使用 to_local()
, to_parent()
, to_widget()
和to_window()代码>.您也可以尝试从小部件的位置中减去 GridLayout 的位置.
If I understand question right, try to use such methods as to_local()
, to_parent()
, to_widget()
and to_window()
. Also you could try to subtract position of your GridLayout from Widgets' positions.
这篇关于如何在 Kivy 的布局中获取小部件位置?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何在 Kivy 的布局中获取小部件位置?


- 使用 Cython 将 Python 链接到共享库 2022-01-01
- 检查具有纬度和经度的地理点是否在 shapefile 中 2022-01-01
- 如何使用PYSPARK从Spark获得批次行 2022-01-01
- YouTube API v3 返回截断的观看记录 2022-01-01
- 我如何透明地重定向一个Python导入? 2022-01-01
- CTR 中的 AES 如何用于 Python 和 PyCrypto? 2022-01-01
- 计算测试数量的Python单元测试 2022-01-01
- 使用公司代理使Python3.x Slack(松弛客户端) 2022-01-01
- ";find_element_by_name(';name';)";和&QOOT;FIND_ELEMENT(BY NAME,';NAME';)";之间有什么区别? 2022-01-01
- 我如何卸载 PyTorch? 2022-01-01