Created
June 9, 2016 08:07
-
-
Save martindemello/99a984958e33dae389f4fc7898aa9fb8 to your computer and use it in GitHub Desktop.
the travails of Gtk# 3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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