Python GUI Development with GTK+ — Grid

The GTK+ Grid is a container that arranges its children into rows and columns in the same way data in an Excel spreadsheet is laid out. The children can take up as many rows and columns as they need to. The GTK+ Grid mainly uses two methods to add child elements to it: Gtk.Grid.attach() and … 

 

Python GUI Development with GTK+ — Setting Properties

Setting properties Widgets have properties, properties describe characteristics of the widget such as the widget’s colour, it’s size, angle or the text displayed in it. In this article, I will show you the three methods available to you to change the properties of widgets. The first method involves setting the properties when creating the widget …