Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何通过pygtk中的代码将图像放置在窗口上特定的x和y像素位置?阅读这篇文章后,我尝试了 xalign 和 yalign,但它只对齐图像。我将使用此代码制作图像网格。请帮忙
试试 GtkFixed。
GtkFixed 是一个容器,其子部件的位置可以通过以下方式设置:
gtk_fixed_put(GtkFixed *fixed, GtkWidget *widget, gint x, gint y);