gtk-sharpGtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details.Gtk.ContainerPack widgets in grid/table patterns.The Table widget allows a programmer to arrange widgets in rows and columns, making it easy to align many widgets adjacent to each other, horizontally and vertically.Tables are created with a specific size - the number of rows and columns. This can be changed dynamically with the method. Widgets are packed into the table with methods.The layout of a table can be altered by setting the spacing between rows and columns. This is done with the and properties, respectively. The spacing of individual cells can be adjusted with and .The following shows how to create a table with three widgets:
public Widget MakeTableTester()
{
// Create a table with 2 rows and 1 column
Table tableLayout = new Table(2, 1, false);
Label longLabel = new Label("This is a label that spans at least two Entry widgets");
// Attach the label over the entire first row
tableLayout.Attach(longLabel, 0, 2, 0, 1);
// Attach an entry to each cell in the second row
tableLayout.Attach(new Entry(), 0, 1, 1, 2);
tableLayout.Attach(new Entry(), 1, 2, 1, 2);
tableLayout.ShowAll();
return tableLayout;
}
Constructor
Pointer to the C object.
Internal constructorThis is an internal constructor, and should not be used by user code.Constructor
The number of rows in this table.
The number of columns in this table.
If homogeneous is TRUE, the table boxes (cells) are resized to the size of the largest widget in the table. If homogeneous is FALSE, the size of a table boxes is dictated by the tallest widget in its same row, and the widest widget in its column (i.e. all cells are the same).
Creates a new Table widget.The size of the table can be altered after its creation using the method.MethodSystem.Void
The widget to be attached to the table
The column number to attach the left side of to.
The column number to attach the right side of to.
The row number to attach the top of to.
The row number to attach the bottom of to.
Packs a widget into the table with default packing options.To pack widgets into the table with more control over size and padding, use the alternative method.MethodSystem.Void
The to add.
The column number to attach the left side of to.
The column number to attach the right side of to.
The row number to attach the top of to.
The row number to attach the bottom of to.
The horizontal packing options for this .
The vertical packing options for this .
The number of pixels of padding to add to the left and right of .
The number of pixels of padding to add to the top and bottom of .
Packs a widget into the table.You can pack widgets into the Table using default packing and padding with the convenience method.Child widgets can span as many table cells as they wish, allowing the programmer to create complex grids of Widgets.PropertyGLib.Property("column-spacing")System.UInt32The number of pixels between columns if it isn't the default value.A .PropertySystem.UInt32The default number of pixels between columns.A .PropertySystem.UInt32Retrieve the spacing that gets placed between newly added rows by default.Spacing between rows that will be added, in pixels.MethodSystem.UInt32
A zero-indexed column number to retrieve spacing information from.
The spacing currently set for a given column.The number of pixels of spacing assigned to the specified .MethodSystem.UInt32
A zero-indexed row number to retrieve spacing information from.
The spacing currently set for a given row.The number of pixels of spacing assigned to the specified .MethodSystem.Void
To be added.
To be added.
To be added.To be added.PropertyGLib.GTypeGType Property.a Returns the native value for .PropertyGLib.Property("homogeneous")System.BooleanManage whether all cells must be of equal size. if all cells are currently equally sized, otherwise.PropertyGtk.Container+ContainerChild
To be added.
To be added.To be added.To be added.PropertyGLib.Property("n-columns")System.UInt32Manage the number of columns in this Table.The number of columns this table currently has.PropertyGLib.Property("n-rows")System.UInt32Manage the number of rows in this Table.The number of rows this table currently has.MethodSystem.Void
The new number of rows this table should allow.
The new number of columns this table should allow.
Resizes the table so that the specified number of and are available for widget packing.PropertyGLib.Property("row-spacing")System.UInt32The space between table rows..MethodSystem.Void
A zero-indexed column number to adjust the spacing of.
The number of pixels on each side of the .
Sets the spacing around a specified column.To adjust the spacing between all columns, use the property.MethodSystem.Void
A zero-indexed row number to adjust the spacing of.
The number of pixels on each side of the .
Sets the spacing around a specified row.To adjust the spacing between all rows, use the property.