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 的布局中获取小部件位置?


基础教程推荐
- 求两个直方图的卷积 2022-01-01
- Plotly:如何设置绘图图形的样式,使其不显示缺失日期的间隙? 2022-01-01
- 在同一图形上绘制Bokeh的烛台和音量条 2022-01-01
- PermissionError: pip 从 8.1.1 升级到 8.1.2 2022-01-01
- 无法导入 Pytorch [WinError 126] 找不到指定的模块 2022-01-01
- 使用大型矩阵时禁止 Pycharm 输出中的自动换行符 2022-01-01
- 包装空间模型 2022-01-01
- 在Python中从Azure BLOB存储中读取文件 2022-01-01
- 修改列表中的数据帧不起作用 2022-01-01
- PANDA VALUE_COUNTS包含GROUP BY之前的所有值 2022-01-01