Hi,

I'm wondering how to change the background color of a button. I'm able to change label's one but not the button's one ...

Here is the code I'm using :

               // -5.1.1-
               Gtk.HBox hbox = new Gtk.HBox();
// --> Label
               // -----> Event Box
               Gtk.EventBox box = new Gtk.EventBox();
               // -----> ModifyBG
box.ModifyBg(Gtk.StateType.Normal, new Gdk.Color( 255, 0, 0));
               // -----> Creating Label
               Gtk.Label lbl = new Gtk.Label(objP.Name);
               // ----> Adding Label to box
               box.Add(lbl);
               // ----> Adding box to HBOX
               hbox.PackStart(box);
// --> Bouton
               // -----> Event Box
               box = new Gtk.EventBox();
               // -----> ModifyBG
box.ModifyBg(Gtk.StateType.Normal, new Gdk.Color( 255, 0, 0));
               // -----> Creating Label
               Gtk.Button btn = new Gtk.Button(objP.Name);
btn.ModifyBg(Gtk.StateType.Normal, new Gdk.Color( 0, 255, 0));
               // ----> Adding Label to box
               box.Add(btn);
               // ----> Adding box to HBOX
               hbox.PackStart(box);
// -5.1.3-
               objVBox.Add(hbox);

_______________________________________________
Gtk-sharp-list maillist  -  [email protected]
http://lists.ximian.com/mailman/listinfo/gtk-sharp-list

Reply via email to