tags:

views:

27

answers:

1

I was looking at some native C code, and it referenced gdk_get_default_root_window. I found the documentation on gdk_get_default_root_window, but I can't seem to find its managed equivalent.

Does anyone know if there is a Gtk# managed equivalent for gdk_get_default_root_window?

+2  A: 

Gdk.Global.DefaultRootWindow looks promising.

jpobst
Thanks, that looks like it's it!
Zach Johnson