Ragazzi come posso creare un table layout in C#??
ho trovato questo....
// 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);
ma non riesco a capire a cosa corrispondono le coordinate nel metodo Attach....
datemi una mano per favore!

Rispondi quotando