public static void SetBackgroundColor (this Gtk.Widget widget, Gtk.StateType state, Xwt.Drawing.Color color) { widget.ModifyBg (state, color.ToGtkValue ()); }
public static void SetChildBackgroundColor (this Gtk.Container container, Xwt.Drawing.Color color) { foreach (var widget in container.Children) widget.ModifyBg (Gtk.StateType.Normal, color.ToGtkValue ()); }
public static void SetTextColor(this Gtk.Widget widget, Gtk.StateType state, Xwt.Drawing.Color color) { widget.ModifyText (state, color.ToGtkValue ()); }