Thanks ...
I've tried but it does'nt work ...
Paulo Augusto a écrit :
I was puzzled by the same thing about buttons for a long time until i
figured it out.
Try changing the foreground, instead.
Sáb, 2006-02-18 às 00:28 +0100, xiii29 escreveu:
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
_______________________________________________
Gtk-sharp-list maillist - [email protected]
http://lists.ximian.com/mailman/listinfo/gtk-sharp-list
|
_______________________________________________
Gtk-sharp-list maillist - [email protected]
http://lists.ximian.com/mailman/listinfo/gtk-sharp-list