- MiBoton = Gtk::Button.new(Gtk::Stock::OK)
- MiBoton.child().child().children[1].text="nuevo texto"
Tuesday, November 29, 2011
Como cambiarle la propiedad text a un Label de GTK::STOCK::XX
Como cambiarle la propiedad text a un Label de GTK::STOCK::XX
código para ruby
irb(main):003:0> miboton.class.name
=> "Gtk::Button"
irb(main):004:0> miboton.child().class.name
=> "Gtk::Alignment"
irb(main):005:0> miboton.child().child().class.name
=> "Gtk::HBox"
irb(main):006:0> miboton.child().child().children[0].class.name
=> "Gtk::Image"
irb(main):007:0> miboton.child().child().children[1].class.name
=> "Gtk::Label"
irb(main):008:0>
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment