如何获取 wx.GridSizer 的单个单元格的大小?

发布于 2024-09-08 18:19:46 字数 90 浏览 1 评论 0原文

我想知道在调用 Fit() 后是否可以获得 wx.GridSizer 的单个单元格的大小。如果是这样,我该怎么做?

I'm wondering if I could get the size of an individual cell of a wx.GridSizer after calling Fit(). If so, how do I do that?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

浮云落日 2024-09-15 18:19:46
item = sizer.GetItem(index)
size = item.GetSize()

如何找到该项目的索引?来自

项目被放置在
网格按照它们添加的顺序,在
行主序。换句话说,
首先填充第一行,然后
第二个,依此类推,直到所有项目都完成
已添加。 (如有必要,可额外
行将按项目添加
添加。)

item = sizer.GetItem(index)
size = item.GetSize()

How to find the item's index? From the documentation,

Items are placed in the cells of the
grid in the order they are added, in
row-major order. In other words, the
first row is filled first, then the
second, and so on until all items have
been added. (If neccessary, additional
rows will be added as items are
added.)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文