| The Following User Says Thank You to taguapire For This Useful Post: | ||
|
|
2008-01-15
, 05:07
|
|
|
Posts: 1,012 |
Thanked: 817 times |
Joined on Jul 2007
@ France
|
#2
|
|
|
2008-01-15
, 05:10
|
|
|
Posts: 107 |
Thanked: 14 times |
Joined on Dec 2007
|
#3
|
You can't add two container in a frame ...
Create a global container to contain your VBOx and HButtonBox ...
Or add you HButtonBox inside your vbox
|
|
2008-01-15
, 09:30
|
|
|
Posts: 696 |
Thanked: 1,012 times |
Joined on Mar 2006
@ Asturies, Spain
|
#4
|
window = hildon.Window() vbox1 = gtk.VBox() hbuttonbox1 = gtk.HButtonBox() vbox1.pack_start(hbuttonbox1, False, False, 0) window.add(vbox1)
| The Following User Says Thank You to yerga For This Useful Post: | ||
|
|
2008-01-15
, 09:45
|
|
|
Posts: 1,012 |
Thanked: 817 times |
Joined on Jul 2007
@ France
|
#5
|
|
|
2008-01-15
, 11:55
|
|
|
Posts: 3,404 |
Thanked: 4,474 times |
Joined on Oct 2005
@ Germany
|
#6
|
|
|
2008-01-15
, 18:56
|
|
|
Posts: 107 |
Thanked: 14 times |
Joined on Dec 2007
|
#7
|
I'm working on Python apps, just for learn and I found that when I add two containers to a hildon window it returns an error. I trying to add a VBox and HButtonBox containers, first for labels, second for buttons, but Gtk complain with the following message:
Regards,
Taguapire.