Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save martindemello/99a984958e33dae389f4fc7898aa9fb8 to your computer and use it in GitHub Desktop.
Save martindemello/99a984958e33dae389f4fc7898aa9fb8 to your computer and use it in GitHub Desktop.
the travails of Gtk# 3
// WTF: Is there really no Gdk.RGBA constructor? No docs either!
let mutable color = Gdk.RGBA ()
color.Red <- 1.0
color.Green <- 1.0
color.Blue <- 0.8
color.Alpha <- 1.0
current.OverrideBackgroundColor(StateFlags.Normal, color)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment