box1=gtk_box_new(GTK_ORIENTATION_HORIZONTAL,3);
align=gtk_alignment_new(1,0,0,0);
my=gtk_button_new_with_label("HELLO");
gtk_container_add(GTK_CONTAINER(frame),my);
gtk_container_add(GTK_CONTAINER(box1),frame);
gtk_container_add(GTK_CONTAINER(window),box1);
I have to write all this code to align the button to the left of the window or easier. If someone can give me more information about GTK containers, because I understand the link well.
Before using Glade, I want to see how everything works. Sorry for my English.
user3389435
source
share