Daily Archives: December 25, 2004

Simplifying Gtk# IdleHandler

One of the problems with using Gtk# is that Gtk/X are not thread safe, meaning you cannot manipulate the GUI from another thread and expect it to work very well.
To get around this, there you can have GLib run methods in the main loop by using GLib.Idle.Add. In windows, Form.Invoke performs the same task, [...]