[Gtk-sharp-list] Changing the background color of button

xiii29 xiii29 at free.fr
Tue Feb 21 15:09:50 EST 2006


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  -  Gtk-sharp-list at lists.ximian.com
>> http://lists.ximian.com/mailman/listinfo/gtk-sharp-list
>>     
> _______________________________________________
> Gtk-sharp-list maillist  -  Gtk-sharp-list at lists.ximian.com
> http://lists.ximian.com/mailman/listinfo/gtk-sharp-list
>
>
>   

-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.ximian.com/pipermail/gtk-sharp-list/attachments/20060221/b1989a31/attachment.html


More information about the Gtk-sharp-list mailing list